-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
30 lines (24 loc) · 962 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
[tool.poetry]
name = "pyriodicity"
version = "0.4.0"
description = "Pyriodicity provides an intuitive and easy-to-use Python implementation for periodicity detection in univariate signals."
license = "MIT"
readme = ["README.md"]
homepage = "https://pyriodicity.readthedocs.io"
repository = "https://github.com/iskandergaba/pyriodicity"
authors = ["Iskander Gaba <iskander@hey.com>"]
keywords = ["period", "periodicity", "seasonality", "period-detection", "periodicity-analysis", "seasonality-analysis", "autoperiod", "cfd-autoperiod", "robustperiod", "signal-processing", "time-series-analysis"]
[tool.poetry.dependencies]
python = "^3.10"
scipy = "^1.14.1"
pywavelets = "^1.8.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
statsmodels = "^0.14.4"
[tool.poetry.group.docs.dependencies]
numpydoc = "^1.8.0"
pydata-sphinx-theme = "^0.16.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"