forked from GestaltCogTeam/BasicTS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 792 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 792 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel"]
[project]
name = "BasicTS"
description = "A Fair and Scalable Time Series Analysis Toolkit and benchmark."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
dependencies = [
"easy-torch==1.3.3",
"easydict",
"packaging",
"setproctitle",
"pandas",
"scikit-learn",
"tables",
"sympy",
"openpyxl",
"setuptools==59.5.0",
"numpy",
"tqdm==4.67.1",
"tensorboard==2.18.0",
"transformers==4.40.1"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/GestaltCogTeam/BasicTS"
Repository = "https://github.com/GestaltCogTeam/BasicTS"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "basicts.__version__"}