-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["uv_build~=0.11"]
build-backend = "uv_build"
[project]
name = "pyriodicity"
version = "0.7.0rc0"
description = "Pyriodicity provides an intuitive and efficient Python implementation of periodicity length detection methods in univariate signals."
license = "MIT"
readme = "README.md"
authors = [{ name = "Iskander Gaba", email = "iskander@hey.com" }]
requires-python = ">=3.10"
keywords = [
"period",
"periodicity",
"seasonality",
"period-detection",
"periodicity-analysis",
"seasonality-analysis",
"autoperiod",
"cfd-autoperiod",
"robustperiod",
"sazed",
"signal-processing",
"time-series-analysis"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"scipy~=1.15",
"pywavelets~=1.8",
"free-threading~=1.1.0",
]
[project.urls]
Documentation = "https://pyriodicity.readthedocs.io"
Repository = "https://github.com/iskandergaba/pyriodicity"
[dependency-groups]
dev = [
"ruff~=0.15.0",
"pytest~=9.0.0",
"pytest-cov~=7.1.0",
"statsmodels~=0.14.0",
]
docs = [
"numpydoc~=1.10.0",
"pydata-sphinx-theme~=0.17.0",
"sphinx-autobuild~=2025.08.0",
]
[tool.uv.dependency-groups]
docs = { requires-python = ">=3.12" }
[tool.ruff.lint]
extend-select = ["E501"]