-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (74 loc) · 1.87 KB
/
Copy pathsetup.py
File metadata and controls
81 lines (74 loc) · 1.87 KB
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
from setuptools import setup
from pathlib import Path
from sorna.agent.version import VERSION
requires = [
'ConfigArgParse',
'coloredlogs>=5.2',
'async_timeout>=1.1',
'pyzmq>=16.0',
'aiodocker',
'aiozmq>=0.7',
'aiohttp~=2.2.0',
'aioredis>=0.2.8',
'aiobotocore>=0.3.0',
'namedlist',
'requests',
'requests_unixsocket',
'simplejson',
'uvloop>=0.8',
'sorna-common~=0.9.0',
]
build_requires = [
'wheel',
'twine',
]
test_requires = [
'pytest>=3.1',
'pytest-asyncio',
'pytest-mock',
'asynctest',
'flake8',
'pep8-naming',
]
dev_requires = build_requires + test_requires + [
'pytest-sugar',
]
ci_requires = []
monitor_requires = [
'datadog>=0.16.0',
'raven>=6.1',
]
setup(
name='sorna-agent',
version=VERSION,
description='Sorna agent',
long_description=Path('README.rst').read_text(),
url='https://github.com/lablup/sorna-agent',
author='Lablup Inc.',
author_email='joongi@lablup.com',
license='LGPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Environment :: No Input/Output (Daemon)',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
],
packages=['sorna.agent'],
namespace_packages=['sorna'],
python_requires='>=3.6',
install_requires=requires,
extras_require={
'build': build_requires,
'test': test_requires,
'dev': dev_requires,
'ci': ci_requires,
'monitor': monitor_requires,
},
)