-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.03 KB
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
[project]
name = "skaters"
version = "0.14.0"
description = "Fast univariate time series models that run in Pyodide"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Peter Cotton", email = "peter.cotton@microprediction.com" }
]
keywords = [
"time series", "forecasting", "online", "distributional", "probabilistic",
"anomaly detection", "calibration", "pit", "crps", "quantile", "pyodide",
]
requires-python = ">=3.10"
dependencies = []
[project.urls]
Homepage = "https://skaters.microprediction.org/"
Documentation = "https://skaters.microprediction.org/"
Source = "https://github.com/microprediction/skaters"
Issues = "https://github.com/microprediction/skaters/issues"
[project.optional-dependencies]
dev = ["pytest"]
# Opt-in accelerated backend (PyO3 skin over the Rust core). Same numerics as
# the pure Python reference; see rust/python/.
fast = ["skaters-fast"]
[build-system]
requires = ["uv_build>=0.10.12,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
]