chronos-forecasting/pyproject.toml

45 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2024-02-29 13:39:05 +00:00
[project]
name = "chronos-forecasting"
version = "1.5.2"
authors = [
{ name="Abdul Fatir Ansari", email="ansarnd@amazon.com" },
{ name="Lorenzo Stella", email="stellalo@amazon.com" },
{ name="Caner Turkmen", email="atturkm@amazon.com" },
]
description = "Chronos: Pretrained models for time series forecasting"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
2024-02-29 13:39:05 +00:00
dependencies = [
"torch>=2.0,<3", # package was tested on 2.2
"transformers>=4.48,<5",
"accelerate>=0.32,<2",
2024-02-29 13:39:05 +00:00
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/chronos"]
2024-02-29 13:39:05 +00:00
[project.optional-dependencies]
test = ["pytest~=8.0", "numpy~=1.21"]
typecheck = ["mypy~=1.9"]
training = ["gluonts[pro]~=0.15", "numpy~=1.21", "datasets~=2.18", "typer", "typer-config", "joblib", "scikit-learn", "tensorboard"]
evaluation = ["gluonts[pro]~=0.15", "numpy~=1.21", "datasets~=2.18", "typer"]
2024-02-29 13:39:05 +00:00
[project.urls]
Homepage = "https://github.com/amazon-science/chronos-forecasting"
Issues = "https://github.com/amazon-science/chronos-forecasting/issues"
Paper = "https://arxiv.org/abs/2403.07815"
2024-02-29 13:39:05 +00:00
[tool.mypy]
ignore_missing_imports = true