-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
49 lines (42 loc) · 1.14 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
[project]
name = "ezmsg"
version = "3.6.0"
description = "A simple DAG-based computation model"
authors = [
{ name = "Griffin Milsap", email = "[email protected]" },
{ name = "Preston Peranich", email = "[email protected]" },
{ name = "Chadwick Boulay", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.24.4",
"typing-extensions >= 4.9.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.8",
"pytest-cov>=5.0.0",
"flake8>=5.0.4",
"xarray>=2023.1.0;python_version<'3.13'",
]
docs = ["sphinx<=7.2", "sphinx-rtd-theme==2.0.0", "ezmsg-sigproc>=1.2.3"]
[project.scripts]
ezmsg = "ezmsg.core.command:cmdline"
[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"]