-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (36 loc) · 888 Bytes
/
pyproject.toml
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
34
35
36
37
38
[tool.poetry]
authors = ["Alex Hallam <alexhallam6.28@gmail.com>"]
description = "Simple probabilistic time series benchmark models"
exclude = [
"tablespoon/stan/out/*",
"tablespoon/stan/*.hpp",
"tablespoon/stan/mean",
"tablespoon/stan/naive",
"tablespoon/stan/snaive",
]
homepage = "https://alexhallam.github.io/tablespoon/"
include = ["docs/EXAMPLES.md", "docs/FORECAST_METHODS.md"]
keywords = [
"forecasting",
"forecast",
"probabilistic",
"naive",
"benchmark",
"seasonal naive",
"mean forecast",
]
license = "MIT"
name = "tablespoon"
readme = "README.md"
repository = "https://github.com/alexhallam/tablespoon"
version = "0.5.1"
[tool.poetry.dependencies]
numpy = "^1.23.0"
pandas = "^1.3.2"
pytest = "7.0.0"
python = ">=3.10"
scipy = "^1.9.3"
statsmodels = "^0.14.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]