forked from TomXaxaxa/ChaosNexus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ChaosNexus"
description = "A Foundation Model for Universal Chaotic System Forecasting with Multi-scale Representations"
version = "0.1.0"
readme = "README.md"
license = { text = "MIT" } # SPDX license identifier
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"hydra-core",
"numpy",
"torch",
"transformers",
"accelerate",
"dysts",
"gluonts[arrow]",
"scipy",
"scikit-learn",
"tqdm",
"wandb",
"matplotlib",
"statsmodels",
"orjson",
"tensorboardX",
"seaborn"
]
# Optional dependencies
[project.optional-dependencies]
numba = ["numba"]
chronos = ["datasets"] # huggingface datasets
rocm = ["torch==2.2.2"]
profile = ["memory_profiler", "psutil"]
# Package data
[tool.setuptools]
packages = ["scaleformer", "scaleformer.utils"]