-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
86 lines (72 loc) · 2.26 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import os
import re
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
def _get_version():
v_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)),
'huskar_sdk_v2', '__init__.py')
ver_info_str = re.compile(r".*version = \((.*?)\)", re.S). \
match(open(v_file_path).read()).group(1)
return re.sub(r'(\'|"|\s+)', '', ver_info_str).replace(',', '.')
# package meta info
NAME = "huskar-sdk-v2"
VERSION = _get_version()
DESCRIPTION = ""
AUTHOR = "Haochuan Guo"
AUTHOR_EMAIL = "[email protected]"
LICENSE = "MIT"
URL = "https://github.com/huskar-org/huskar-python"
KEYWORDS = "huskar"
REQUIREMENTS = [
"simplejson==3.7.3",
"blinker==1.3",
"gevent>=1.0.1,<1.3.0",
"atomicfile==1.0",
"requests",
]
# package contents
PACKAGES = find_packages(
exclude=['tests.*', 'tests', 'examples.*', 'examples',
'dev_requirements.txt'])
here = os.path.abspath(os.path.dirname(__file__))
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
tests_require = ["pytest==3.2.2",
"pylint==1.6.4",
"pytest-cov==2.5.1",
"pytest-xdist==1.20.0",
"pytest-mock==1.6.2",
"mock==2.0.0"]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
install_requires=REQUIREMENTS,
tests_require=tests_require,
cmdclass={'test': PyTest},
extras_require={'test': tests_require,
'bootstrap': ['kazoo'],
'doc': ['Sphinx==1.3.1',
'sphinx-rtd-theme==0.1.8']},
license=LICENSE,
url=URL,
keywords=KEYWORDS,
packages=PACKAGES,
zip_safe=False,
classifiers=[],
)