forked from TDAmeritrade/stumpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (54 loc) · 1.72 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
from setuptools import setup
def readme():
with open("README.rst") as readme_file:
return readme_file.read()
configuration = {
"name": "stumpy",
"version": "1.0.0",
"python_requires=": ">=3.6",
"author": "Sean M. Law",
"author_email": "seanmylaw@gmail.com",
"description": (
"A powerful and scalable library that can be used"
"for a variety of time series data mining tasks"
),
"long_description": readme(),
"classifiers": [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"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.6",
],
"keywords": "time series matrix profile motif discord",
"url": "https://github.com/TDAmeritrade/stumpy",
"maintainer": "Sean M. Law",
"maintainer_email": "seanmylaw@gmail.com",
"license": "BSD-3",
"packages": ["stumpy"],
"install_requires": ["numpy >= 1.13", "scipy >= 1.2.1", "numba >= 0.42.0"],
"ext_modules": [],
"cmdclass": {},
"tests_require": ["pytest"],
"data_files": (),
"extras_require": {
"ci": [
"pandas >= 0.20.0",
"dask >= 1.2.2",
"distributed >= 1.28.1",
"coverage >= 4.5.3",
"flake8 >= 3.7.7",
"black >= 19.3b0",
"pytest >= 4.4.1",
"codecov",
]
},
}
setup(**configuration)