-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
63 lines (58 loc) · 1.71 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
import sys
try:
from setuptools import setup, find_packages
use_setuptools = True
except ImportError:
from distutils.core import setup
use_setuptools = False
try:
with open('README.rst', 'rt') as readme:
description = '\n' + readme.read()
except IOError:
# maybe running setup.py from some other dir
description = ''
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
python_requires = '>=3.6'
install_requires = [
'Rx>=3.2',
'rxsci>=0.11',
'rxx>=0.1',
'PyYAML>=5.3',
'cyclotron>=1.3',
'cyclotron-std>=1.0',
'cyclotron-aiokafka>=0.7',
'cyclotron-consul>=0.1',
]
setup(
name="makinage",
version='0.8.0',
url='https://github.com/maki-nage/makinage.git',
license='MIT',
description="Reactive data science",
long_description=description,
long_description_content_type='text/x-rst',
author='Romain Picard',
author_email='[email protected]',
packages=find_packages(),
install_requires=install_requires,
setup_requires=pytest_runner,
tests_require=['pytest>=5.0.1'],
platforms='any',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
project_urls={
'Documentation': 'https://makinage.readthedocs.io',
},
entry_points={
'console_scripts': [
'makinage=makinage.makinage:main',
'makinage-model-publisher=makinage.model_publisher.model_publisher:main',
],
}
)