-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
executable file
·94 lines (87 loc) · 2.75 KB
/
setup.cfg
File metadata and controls
executable file
·94 lines (87 loc) · 2.75 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[metadata]
name = ForeTiS
version = 0.0.7
description = state-of-the-art and easy-to-use time series forecasting
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
author = Josef Eiglsperger, Florian Haselbeck; Dominik G. Grimm
author_email = josef.eiglsperger@tum.de
url = https://github.com/grimmlab/ForeTiS
project_urls =
Documentation = https://ForeTiS.readthedocs.io/
Source = https://github.com/grimmlab/ForeTiS
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >= 3.8
install_requires =
torch>=1.11.0
xgboost>=1.5.2
optuna>=2.10.0
sqlalchemy==1.4.46
joblib>=1.1.0
numpy>=1.22.2
pandas>=1.4.1
scikit-learn>=1.0.2
tensorflow>=2.8.0
tensorflow-probability>=0.18
statsmodels>=0.13.2
scipy>=1.8.1
pmdarima>=2.0.1
gpflow>=2.5.2
matplotlib>=3.3.0
changefinder>=0.3
bayesian_torch
blitz-bayesian-pytorch
tables>=3.7.0
[options.package_data]
dataset_specific_config.ini = dataset_specific_config.ini
[options.packages.find]
exclude =
docs*
# URLs
url='https://github.com/grimmlab/ForeTiS',
project_urls={
"Documentation": "https://ForeTiS.readthedocs.io/"
},
# build stuff
packages=find_packages(),
install_requires=["torch==1.11.0",
"xgboost==1.5.2",
"optuna==2.10.0",
"sqlalchemy==1.4.46",
"joblib==1.1.0",
"numpy==1.22.2",
"pandas==1.4.1",
"scikit-learn==1.0.2",
"tensorflow==2.8.0",
"tensorflow-probability==0.18",
"statsmodels==0.13.2",
"scipy==1.8.1",
"pmdarima==2.0.1",
"gpflow==2.5.2",
"matplotlib==3.3.0",
"changefinder==0.3",
"bayesian_torch",
"blitz-bayesian-pytorch",
"tables==3.7.0"
],
# see https://pypi.org/classifiers/
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
python_requires=">=3.8"