forked from TDAmeritrade/stumpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (59 loc) · 1.94 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
from setuptools import setup
import sys
def readme():
with open("README.rst") as readme_file:
return readme_file.read()
def get_extras_require():
extras = [
"pandas >= 0.20.0",
"dask >= 1.2.2",
"distributed >= 1.28.1",
"coverage >= 4.5.3",
"flake8 >= 3.7.7",
"flake8-docstrings >= 1.5.0",
"black >= 19.3b0",
"pytest >= 4.4.1",
"codecov",
]
if "linux" in sys.platform:
extras.append("tbb >= 2019.5")
return extras
configuration = {
"version": "1.11.1",
"python_requires=": ">=3.7",
"author": "Sean M. Law",
"author_email": "[email protected]",
"description": (
"A powerful and scalable library that can be used "
"for a variety of time series data mining tasks"
),
"long_description_content_type": "text/x-rst",
"long_description": readme(),
"classifiers": [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.7",
],
"keywords": "time series matrix profile motif discord",
"url": "https://github.com/TDAmeritrade/stumpy",
"maintainer": "Sean M. Law",
"maintainer_email": "[email protected]",
"license": "3-clause BSD License",
"packages": ["stumpy"],
"install_requires": ["numpy >= 1.17", "scipy >= 1.5", "numba >= 0.54"],
"ext_modules": [],
"cmdclass": {},
"tests_require": ["pytest"],
"data_files": (),
"extras_require": {"ci": get_extras_require()},
}
setup(name="stumpy", **configuration)