forked from yalchik/VaDER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 781 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="vader",
version="0.0.1",
description="Deep learning for clustering of multivariate short time series with potentially many missing values",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/johanndejong/VaDER",
packages=["vader", "vader.hp_opt", "vader.utils", "vader.hp_opt.job", "vader.hp_opt.interface"],
package_dir={'': "tensorflow2"},
python_requires='>=3.6',
install_requires=[
"numpy",
"pandas",
"scipy",
"sklearn",
"tensorflow",
"tensorflow_addons",
"matplotlib",
"optuna",
"PyPDF2"
],
)