-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (76 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
83 lines (76 loc) · 1.72 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
[project]
name = "ezmsg"
version = "3.9.0"
description = "A simple DAG-based computation model"
authors = [
{ name = "Griffin Milsap", email = "griffin.milsap@gmail.com" },
{ name = "Preston Peranich", email = "pperanich@gmail.com" },
{ name = "Chadwick Boulay", email = "chadwick.boulay@gmail.com" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"array-api-compat>=1.12.0",
"typing-extensions>=4.14.1",
]
[dependency-groups]
dev = [
{include-group = "lint"},
{include-group = "test"},
"pre-commit>=4.3.0",
"viztracer>=1.0.4",
"mlx>=0.18.0; sys_platform == 'darwin' and platform_machine == 'arm64'",
]
lint = [
"flake8>=7.3.0",
"ruff>=0.12.9",
]
test = [
"numpy>=2.2.6",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.2.1",
"xarray>=2025.6.1",
"psutil>=7.1.0",
"pytest-benchmark>=5.2.3",
]
docs = [
{include-group = "axisarray"},
"sphinx>=8.1.3",
"pydata-sphinx-theme",
"sphinxext.rediraffe",
"sphinx_autodoc_typehints>=3.0.0",
"sphinx_copybutton",
"sphinx_design",
]
axisarray = [
"numpy>=2.2.6",
]
[project.scripts]
ezmsg = "ezmsg.core.command:cmdline"
[project.optional-dependencies]
axisarray = [
"numpy>=2.2.6",
]
perf = [
"xarray>=2025.6.1",
]
dashboard = [
"ezmsg-dashboard; python_version >= '3.11'",
]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = ["src", "tests"]
testpaths = "tests"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/ezmsg"]