[build-system] requires = ["hatchling>=1.27.0"] build-backend = "hatchling.build" [project] name = "future-ts" version = "0.1.0" description = "FUTURE-TS: a future-only benchmark scaffold for time-series foundation models." readme = "README.md" requires-python = ">=3.11" license = { text = "Apache-2.0" } authors = [ { name = "James LePage", email = "james.lepage@tsfm.ai" }, { name = "Paul Hultgren", email = "paul.hultgren@tsfm.ai" } ] keywords = ["benchmark", "forecasting", "time-series", "evaluation", "tsfm"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering :: Artificial Intelligence", ] dependencies = [] [project.urls] Homepage = "https://tsfm.ai" Repository = "https://github.com/tsfm-ai/future-ts" [project.optional-dependencies] dev = [] [project.scripts] future-ts = "future_ts.cli:main" [tool.hatch.build.targets.sdist] include = [ "/future_ts", "/benchmarks", "/examples", "/docs", "/paper", "/schemas", "/scripts", "/tests", "/README.md", "/CHANGELOG.md", "/LICENSE", "/Makefile", ] [tool.hatch.build.targets.wheel] packages = ["future_ts"] [tool.hatch.build.targets.wheel.force-include] "benchmarks" = "future_ts/benchmarks" "examples" = "future_ts/examples" "schemas" = "future_ts/schemas"