-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.35 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
63
64
65
66
67
[project]
name = "ezmsg-event"
description = "Namespace package for ezmsg to work with signal events like neural spikes and heartbeats"
authors = [
{ name = "Chadwick Boulay", email = "chadwick.boulay@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"ezmsg>=3.7.3",
"ezmsg-baseproc>=1.5.1",
"ezmsg-sigproc>=2.17.0",
"sparse>=0.17.0",
"numpy>=2.2.6",
]
[dependency-groups]
dev = [
"typer",
"pre-commit>=4.0.0",
{include-group = "lint"},
{include-group = "test"},
]
lint = [
"ruff"
]
test = [
"pytest"
]
docs = [
"sphinx>=7.0",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"pydata-sphinx-theme",
"myst-parser",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/ezmsg/event/__version__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/ezmsg"]
[tool.ruff]
line-length = 120
target-version = "py310"
# Exclude auto-generated files
exclude = ["*/__version__.py"]
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.ruff.lint.isort]
known-first-party = ["ezmsg.event"]
known-third-party = ["ezmsg"]
[tool.uv.sources]
# Uncomment to use development version of ezmsg from git
#ezmsg = { git = "https://github.com/ezmsg-org/ezmsg.git", branch = "dev" }