2024-02-29 13:39:05 +00:00
|
|
|
[project]
|
2024-11-28 12:37:58 +00:00
|
|
|
name = "chronos-forecasting"
|
2025-05-06 08:20:46 +00:00
|
|
|
version = "1.5.2"
|
2024-11-28 12:37:58 +00:00
|
|
|
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"
|
2024-04-05 13:36:39 +00:00
|
|
|
license = { file = "LICENSE" }
|
2024-11-28 12:37:58 +00:00
|
|
|
requires-python = ">=3.9"
|
2024-02-29 13:39:05 +00:00
|
|
|
dependencies = [
|
2025-02-06 15:29:32 +00:00
|
|
|
"torch>=2.0,<3", # package was tested on 2.2
|
2025-02-13 12:46:47 +00:00
|
|
|
"transformers>=4.48,<5",
|
2025-05-06 08:15:22 +00:00
|
|
|
"accelerate>=0.32,<2",
|
2024-02-29 13:39:05 +00:00
|
|
|
]
|
2024-11-28 12:37:58 +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]
|
2024-04-05 13:36:39 +00:00
|
|
|
test = ["pytest~=8.0", "numpy~=1.21"]
|
|
|
|
|
typecheck = ["mypy~=1.9"]
|
2024-11-26 16:47:14 +00:00
|
|
|
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
|
|
|
|
2024-11-28 12:37:58 +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
|