-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.21 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
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 = ''
python_requires = '>=3.6'
install_requires = [
'river>=0.7',
'rxsci>=0.7',
'scikit-learn>=0.24',
]
setup(
name="rxsci-river",
version='0.1.0',
url='https://github.com/maki-nage/rxsci-river.git',
license='MIT',
description="River-Ml integration into RxSci",
long_description=description,
author='Romain Picard',
author_email='[email protected]',
packages=find_packages(),
install_requires=install_requires,
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://www.makinage.org/doc/rxsci-river/latest/index.html',
}
)