-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
74 lines (71 loc) · 1.81 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
import setuptools
from npf.version import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
'require-python-3',
'pandas',
'numpy',
'regex',
'matplotlib',
'gitpython',
'typing',
'pydotplus',
'scipy',
'scikit-learn',
'orderedset; python_version < "3.7.0"',
'ordered_set; python_version >= "3.7.0"',
'paramiko',
'asteval',
'cryptography==43.0.1',
'gitdb',
'pyasn1',
'natsort',
'webcolors',
'colorama',
'pygtrie',
'packaging',
'importlib_metadata',
'npf-web-extension >= 0.6.4',
'nbformat',
'nbconvert',
'jinja2',
'spellwise',
'seaborn',
'statsmodels',
'scikit-optimize',
'colorama',
'scikit-optimize'
]
setuptools.setup(
name="npf",
version=__version__,
author="Tom Barbette",
author_email="[email protected]",
install_requires=install_requires,
description="NPF",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tbarbette/npf",
packages=setuptools.find_packages(),
package_data={'': ['*.repo', '*.npf']},
py_modules=['npf_run', 'npf_compare', 'npf_watch'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'npf=npf_compare:main',
'npf-regress=npf_run:main',
'npf-run=npf_run:main',
'npf-compare=npf_compare:main',
'npf-watch=npf_watch:main',
'npf-run.py=npf_run:main',
'npf-compare.py=npf_compare:main',
'npf-watch.py=npf_watch:main',
],
},
)