-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 766 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 766 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "weatherman"
version = "0.1.0"
description = "Unified time-series forecasting interface over Nixtla + AutoGluon"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Bryan Whiting" }]
dependencies = [
"pandas>=2.1",
"numpy>=1.26",
"pydantic>=2.8",
"statsforecast>=1.7.8",
"utilsforecast>=0.2.6",
"datasetsforecast>=1.0.0",
]
[project.optional-dependencies]
autogluon = ["autogluon.timeseries>=1.2"]
dev = ["pytest>=8.0", "ruff>=0.6"]
[project.scripts]
forecastingapi = "forecastingapi.cli:main"
weatherman = "weatherman.cli:main"
[tool.setuptools]
packages = ["weatherman", "forecastingapi"]
[tool.ruff]
line-length = 100