-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
69 lines (65 loc) · 1.5 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
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=66"]
[project]
name = "ProbTS"
version = "0.1.0"
description = "Benchmarking Point and Distributional Forecasting across Diverse Prediction Horizons"
authors = [
{name = "Jiawen Zhang"},
{name = "Xumeng Wen"},
{name = "Zhenwei Zhang"},
{name = "Shun Zhen"},
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"numpy",
"pandas",
"einops",
"matplotlib",
"tqdm",
"lightning @ https://github.com/Lightning-AI/lightning/archive/refs/heads/master.zip",
"gluonts==0.13.1",
"typeshed-client==2.3.0",
"docstring-parser==0.15",
"orjson==3.9.0",
"einops>=0.6.1",
"pydantic==1.10.8",
"linear-attention-transformer==0.19.1",
"ray==2.8.1",
"tensorboardx==2.6.2",
"pyarrow==11.0.0",
"protobuf>=3.19",
"jsonargparse[signatures]==4.27.7",
"opt_einsum",
"psutil",
"reformer-pytorch",
"gdown",
]
[project.optional-dependencies]
tsfm = [
"timm",
"accelerate",
"tokenizers",
"datasets",
"transformers",
"chronos @ git+https://github.com/amazon-science/chronos-forecasting.git", # for chronos
"jaxtyping",
"hydra-core==1.3",
"orjson",
"tensorboard",
"multiprocess",
"huggingface_hub>=0.23.0",
"safetensors",
"jax[cpu]",
"paxml>=1.4.0", # for timesfm
"praxis>=1.4.0",
"einshape>=1.0.0",
"numpy>=1.26.4",
"pandas==2.0.3",
"utilsforecast",
"pykeops",
]
[tool.setuptools]
py-modules = []