-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.25 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "ts_scaler"
version = "0.0.3"
description = ""
authors = [
"Joseph Wang <[email protected]>",
"Hsin-Cheng Huang <[email protected]>",
"ShengLi Tzeng <[email protected]>"
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10.13"
ipykernel = "6.13.0"
ipython = "8.3.0"
boto3 = "^1.34.153"
pandas = "^2.2.2"
matplotlib = "^3.7.1"
seaborn = "^0.13.2"
plotly = "^5.23.0"
nbformat = "^5.10.4"
jupyter-book = "^1.0.2"
jupyterlab = "^4.2.4"
bokeh = "^3.5.1"
neuralforecast = "^1.7.4"
numpy = ">1.17,<2.0"
datasetsforecast = "^0.0.8"
statsforecast = "^1.7.6"
ipywidgets = "^8.1.3"
scikit-learn = "^1.5.1"
scipy = "^1.14.0"
debugpy = "^1.8.3" # Added debugpy dependency
[tool.poetry.group.dev.dependencies]
black = "^22.3.0"
isort = "^5.10.1"
mypy = "^0.971"
pydocstyle = { extras = ["toml"], version = "^6.1.1" }
pytest = "^7.1.3"
pytest-cov = "^4.1.0"
poethepoet = "^0.15.0"
coverage = { extras = ["toml"], version = "^6.4.4" }
pre-commit = "^2.20.0"
python-dotenv = "^1.0.0"
poetry-bumpversion = "^0.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py310']
[tool.isort]
profile = "black"
[[tool.mypy.overrides]]
module = "cleo.*"
ignore_missing_imports = true