-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (56 loc) · 2.13 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
repo_base_dir = os.path.abspath(os.path.dirname(__file__))
# pull in the packages metadata
package_about = {}
with open(os.path.join(
repo_base_dir, "cobald", "remote", "__about__.py")
) as about_file:
exec(about_file.read(), package_about)
with open(os.path.join(repo_base_dir, 'README.rst'), 'r') as README:
long_description = README.read()
TESTS_REQUIRE = ['pytest>=4.3.0', 'pytest-timeout']
if __name__ == '__main__':
setup(
name=package_about['__title__'],
version=package_about['__version__'],
description=package_about['__summary__'],
long_description=long_description.strip(),
author=package_about['__author__'],
author_email=package_about['__email__'],
url=package_about['__url__'],
packages=find_packages(),
# dependencies
install_requires=[
'cobald>=0.10.0',
'trio>=0.11.0',
'async_generator',
],
extras_require={
'docs': ["sphinx", "sphinxcontrib-tikz", "sphinx_rtd_theme"],
'test': TESTS_REQUIRE,
'contrib': ['flake8', 'flake8-bugbear'] + TESTS_REQUIRE,
},
# metadata for package search
license='MIT',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Topic :: Adaptive Technologies',
'Topic :: Office/Business :: Scheduling',
'Topic :: System :: Distributed Computing',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords=package_about['__keywords__'],
# unit tests
setup_requires=['pytest-runner'],
test_suite='cobald_remote_tests',
tests_require=TESTS_REQUIRE,
)