-
Notifications
You must be signed in to change notification settings - Fork 99
/
pyproject.toml
88 lines (81 loc) · 1.76 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "uni2ts"
dynamic = [
"version",
]
dependencies = [
"torch>=2.1,<2.5",
"lightning>=2.0",
"gluonts~=0.14.3",
"numpy~=1.26.0",
"scipy~=1.11.3",
"einops==0.7.*",
"jaxtyping~=0.2.24",
"python-dotenv==1.0.0",
"hydra-core==1.3",
"orjson",
"tensorboard",
"multiprocess",
"huggingface_hub>=0.23.0",
"safetensors",
"datasets~=2.17.1",
"jax[cpu]",
]
requires-python = ">=3.10"
authors = [
{name = "Gerald Woo", email = "[email protected]"},
{name = "Chenghao Liu", email = "[email protected]"},
{name = "Akshat Kumar"},
{name = "Caiming Xiong"},
{name = "Silvio Savarese"},
{name = "Doyen Sahoo"},
]
maintainers = [
{name = "Gerald Woo", email = "[email protected]"},
{name = "Juncheng Liu", email = "[email protected]"}
]
description = "Unified Training of Universal Time Series Forecasting Transformers"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["Time Series Forecasting", "Transformer", "Deep Learning", "PyTorch"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
dev = [
"pytest==7.4.3",
"pytest_timeout==2.2.0",
"hatch",
"black[jupyter]==24.2.0",
"isort",
"pre-commit",
]
notebook = [
"jupyter",
"ipywidgets",
"matplotlib",
]
build-lotsa = [
"buildings_bench",
"pyreadr",
"tables",
"subseasonal-data"
]
[tool.hatch.version]
path = "src/uni2ts/__about__.py"
[tool.hatch.build]
packages = ["src/uni2ts"]
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.pytest.ini_options]
pythonpath = [
".", "src",
]