forked from ezmsg-org/ezmsg-simbiophys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
82 lines (71 loc) · 1.76 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
[project]
name = "ezmsg-simbiophys"
description = "Signal simulation and synthesis for ezmsg"
authors = [
{ name = "Chadwick Boulay", email = "chadwick.boulay@gmail.com" },
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.10.15"
dynamic = ["version"]
dependencies = [
"ezmsg>=3.6.0",
"ezmsg-baseproc>=1.2.1",
"ezmsg-event>=0.6.0",
"ezmsg-lsl>=1.4.3",
"ezmsg-sigproc>=2.8.0",
"numpy>=1.26.0",
"sparse>=0.17.0",
]
[dependency-groups]
dev = [
"pre-commit>=4.0.0",
{include-group = "lint"},
{include-group = "test"},
"typer>=0.20.0",
"scipy-stubs>=1.15.3.0",
"ezmsg-peripheraldevice>=0.3.0",
"ezmsg-lsl>=1.4.3",
]
lint = [
"ruff",
]
test = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
]
docs = [
"sphinx>=8.0",
"pydata-sphinx-theme",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"myst-parser",
]
# Uncomment if your package provides CLI commands
# [project.scripts]
# ezmsg-simbiophys = "ezmsg.simbiophys.main: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/simbiophys/__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.simbiophys"]
known-third-party = ["ezmsg", "ezmsg.sigproc", "ezmsg.baseproc", "ezmsg.event"]
[tool.uv.sources]
# Uncomment to use development version of ezmsg from git
#ezmsg = { git = "https://github.com/ezmsg-org/ezmsg.git", branch = "dev" }