32 lines
756 B
TOML
32 lines
756 B
TOML
[tool.poetry]
|
|
name = "timesfm"
|
|
version = "2.0.0"
|
|
description = "A time series foundation model."
|
|
authors = [
|
|
"Rajat Sen <senrajat@google.com>",
|
|
"Yichen Zhou <yichenzhou@google.com>",
|
|
"Abhimanyu Das <abhidas@google.com>",
|
|
"Petros Mol <pmol@google.com>",
|
|
"Michael Chertushkin <chertushkinmichael@gmail.com>"
|
|
]
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
packages = [{include = "timesfm", from = "src"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.11"
|
|
numpy = ">=1.26.4"
|
|
huggingface_hub = { version = ">=0.23.0", extras = ["cli"] }
|
|
safetensors = ">=0.5.3"
|
|
torch = { version = ">=2.0.0", extras = ["cuda"] }
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
indent-width = 2
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|