-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
45 lines (42 loc) · 1.29 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
from setuptools import setup, find_packages
__version__ = "0.0.6"
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
setup(
name="vus",
version=__version__,
description="Volume Under the Surface",
classifiers=CLASSIFIERS,
author="The DATUM Lab",
author_email="[email protected]",
packages=find_packages(),
zip_safe=True,
license="Apache-2.0 license",
url="https://github.com/TheDatumOrg/VUS",
entry_points={},
install_requires=[
'numpy>=1.24.3',
'matplotlib>=3.7.5',
'pandas>=2.0.3',
'arch>=5.3.1',
'tsfresh>=0.20.2',
'hurst>=0.0.5',
'tslearn>=0.6.3',
'cython>=3.0.10',
'scikit-learn>=1.3.2',
'stumpy>=1.12.0',
'tensorflow>=2.13.0',
'networkx>=3.1',
]
)