forked from google-research/timesfm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 955 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 955 Bytes
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
[project]
name = "timesfm"
version = "2.0.0"
description = "A time series foundation model."
authors = [
{name = "Rajat Sen", email = "senrajat@google.com"},
{name = "Yichen Zhou", email = "yichenzhou@google.com"},
{name = "Abhimanyu Das", email = "abhidas@google.com"},
{name = "Petros Mol", email = "pmol@google.com"},
{name = "Michael Chertushkin", email = "chertushkinmichael@gmail.com"},
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.26.4",
"huggingface_hub[cli]>=0.23.0",
"safetensors>=0.5.3",
]
[project.optional-dependencies]
torch = [
"torch>=2.0.0",
]
flax = [
"flax",
"optax",
"einshape",
"orbax-checkpoint",
"jaxtyping",
"jax[cuda]"
]
xreg = [
"jax[cuda]",
"scikit-learn",
]
[tool.ruff]
line-length = 88
indent-width = 2
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"