forked from DhiriaDev/TIMEX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (34 loc) · 1.02 KB
/
pyproject.toml
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
[tool.poetry]
name = "timexseries"
version = "1.2.0"
description = "TIMEX is a framework for time-series-forecasting-as-a-service."
authors = ["Alessandro Falcetta <alessandro.falcetta@polimi.it>", "Manuel Roveri <manuel.roveri@polimi.it>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/AlexMV12/TIMEX"
homepage = "https://alexmv12.github.io/TIMEX/"
keywords = ["time-series", "time", "forecasting", "as-a-service"]
classifiers = [
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis"
]
[tool.poetry.dependencies]
python = "^3.7"
dash = "^1.19.0"
torch = "^1.7.0"
dash-bootstrap-components = "^0.11.3"
gunicorn = "^20.0.4"
colorhash = "^1.0.3"
dateparser = "^1.0.0"
scipy = "^1.6.0"
sklearn = "^0.0"
statsmodels = "^0.12.2"
networkx = "^2.5"
prophet = "^1.0.1"
pmdarima = "^1.8.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"