-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1017 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fts_explore"
dynamic = [
"version",
]
dependencies = [
"uni2ts@git+https://github.com/SalesforceAIResearch/uni2ts.git@2ba614de8878d350c62835c942b450d2f4d5a711",
]
requires-python = ">=3.10"
authors = [
{name = "Alexandros Liapatis", email = "[email protected]"}
]
description = "Unified Training of Universal Time Series Forecasting Transformers"
readme = "README.md"
keywords = ["Time Series Forecasting", "Transformer", "Deep Learning", "PyTorch"]
[project.optional-dependencies]
dev = [
"hatch",
"ruff",
"isort",
"pre-commit",
"jupyter",
"ipywidgets",
"matplotlib",
"gdown",
"pyright",
"azure-storage-blob",
"azure-identity",
"loguru",
"yfinance",
"openmeteo-requests",
"requests_cache",
"retry-requests"
]
[tool.hatch.version]
path = "src/fts_explore/__about__.py"
[tool.hatch.build]
packages = ["src/fts_explore"]
[tool.hatch.metadata]
allow-direct-references=true