-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (91 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
103 lines (91 loc) · 2.11 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "ezmsg-tools"
description = "ezmsg namespace package containing tools for working with ezmsg graphs."
authors = [
{ name = "Chadwick Boulay", email = "chadwick.boulay@gmail.com"}
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["version"]
dependencies = [
"ezmsg>=3.6.2",
"numpy>=1.26.0",
"typer>=0.24.1",
]
[dependency-groups]
dev = [
"pre-commit>=4.0.0",
"scipy>=1.14.1",
"ezmsg-sigproc>=2.18.0",
"ezmsg-simbiophys>=1.4.1",
{include-group = "lint"},
{include-group = "test"},
]
lint = [
"ruff>=0.12.9",
]
test = [
"pytest>=8.3.3",
"ezmsg-simbiophys>=1.4.1",
]
docs = [
"sphinx>=7.0",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"pydata-sphinx-theme",
"myst-parser",
]
[project.optional-dependencies]
perfmon = [
"dash-extensions>=1.0.19",
"dash>=2.18.2",
"pandas>=2.2.3",
"plotly>=5.24.1",
"typer>=0.15.1",
"pygtail>=0.14.0",
"dash-bootstrap-components>=1.6.0",
"ezmsg-baseproc>=1.1.0",
]
sigmon = [
"PySide6>=6.7",
"pygraphviz>=1.14",
"typer>=0.15.1",
"ezmsg-qt>=0.2.1",
"phosphor>=0.5.0",
"pandas",
]
viewer = [
"PySide6>=6.7",
"typer>=0.15.1",
"ezmsg-qt>=0.2.1",
"phosphor>=0.5.0",
]
[project.scripts]
ezmsg-performance-monitor = "ezmsg.tools.perfmon.cli:main"
ezmsg-signal-monitor = "ezmsg.tools.sigmon.cli:main"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/ezmsg/tools/__version__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/ezmsg"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[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.tools"]
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" }