-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
46 lines (43 loc) · 1.38 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 os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'mcfly/_version.py')) as versionpy:
exec(versionpy.read())
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "mcfly",
version = __version__,
description = ("Deep learning for time series data"),
license = "Apache Software License 2.0",
keywords = "Python",
url = "https://github.com/NLeSC/mcfly",
packages = find_packages(),
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
],
test_suite="tests",
python_requires='>=3.10',
install_requires=[
"numpy<1.22.0",
"scikit-learn>=0.15.0,<1.1.0",
"scipy>=0.11,<1.8.0",
"tensorflow>=2.0.0",
"h5py",
],
extras_require={"dev": ["coverage",
"prospector[with_pyroma]==1.7.7",
"pytest",
"pytest-cov",
],
"publishing": [
"build",
"twine",
"wheel",
"sphinx",
"sphinx-rtd-theme"
]
}
)