-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.08 KB
/
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
45
46
47
48
49
50
[project]
name = "ezmsg-sigproc"
description = "Timeseries signal processing implementations in ezmsg"
authors = [
{ name = "Griffin Milsap", email = "[email protected]" },
{ name = "Preston Peranich", email = "[email protected]" },
{ name = "Chadwick Boulay", email = "[email protected]" }
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.10.15"
dynamic = ["version"]
dependencies = [
"ezmsg>=3.6.0",
"numpy>=1.26.0",
"pywavelets>=1.6.0",
"scipy>=1.13.1",
]
[project.optional-dependencies]
test = [
"flake8>=7.1.1",
"frozendict>=2.4.4",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"pytest>=8.3.3",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/ezmsg/sigproc/__version__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/ezmsg"]
[tool.uv]
dev-dependencies = [
"pre-commit>=3.8.0",
"ruff>=0.6.7",
]
[tool.pytest.ini_options]
norecursedirs = "tests/helpers"
addopts = "-p no:warnings"