forked from SalesforceAIResearch/gift-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (64 loc) · 1.59 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "salesforce-gift-eval"
dynamic = [
"version",
]
dependencies = [
"pandas==2.0.0",
"gluonts~=0.15.1",
"numpy~=1.26.0",
"einops==0.7.*",
"python-dotenv==1.0.0",
"hydra-core==1.3",
"datasets~=2.17.1",
"orjson",
"matplotlib~=3.9.2"
]
requires-python = ">=3.10"
authors = [
{name = "Taha Aksu", email = "[email protected]"},
{name = "Gerald Woo", email = "[email protected]"},
{name = "Chenghao Liu", email = "[email protected]"},
{name = "Juncheng Liu", email = "[email protected]"},
{name = "Xu Liu", email = "[email protected]"},
{name = "Caiming Xiong"},
{name = "Silvio Savarese"},
{name = "Doyen Sahoo"},
]
maintainers = [
{name = "Taha Aksu", email = "[email protected]"},
{name = "Chenghao Liu", email = "[email protected]"},
]
description = "GIFT-Eval Benchmark"
#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]
baseline = [
"torch>=2.1",
"statsforecast",
"tensorboard",
"torch>=2.1",
"lightning>=2.0",
]
[tool.hatch.version]
path = "src/gift_eval/__about__.py"
[tool.hatch.build]
packages = ["src/gift_eval"]
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.pytest.ini_options]
pythonpath = [
".", "src",
]