-
Notifications
You must be signed in to change notification settings - Fork 177
/
pyproject.toml
44 lines (39 loc) · 942 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
39
40
41
42
43
44
[build-system]
requires = [
"poetry-core>=1.0.0",
"Cython>=^0.29",
"numpy >=1.21.1",
]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "zigzag"
version = "0.3.2"
readme = "README.md"
homepage = "https://github.com/jbn/ZigZag"
repository = "https://github.com/jbn/ZigZag"
description = "Package for finding peaks and valleys of time series."
authors = ["generativist <[email protected]>"]
license = "BSD-3-Clause"
packages = [{ include = "zigzag" }]
include = [
{ path = "zigzag/**/*.so", format = "wheel" },
{ path = "zigzag/**/*.pyx" },
{ path = "zigzag/**/*.pyd" },
"CHANGES.txt"
]
[tool.poetry.dependencies]
python = ">=3.8"
numpy = ">=1.21.1"
Cython = "^0.29"
[tool.poetry.build]
generate-setup-file = false
script = "build.py"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pandas = ">=0.22,<2.0"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]