forked from pymmcore-plus/pymmcore-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
158 lines (139 loc) · 3.91 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# https://peps.python.org/pep-0517/
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
# https://hatch.pypa.io/latest/config/metadata/
[tool.hatch.version]
source = "vcs"
# read more about configuring hatch at:
# https://hatch.pypa.io/latest/config/build/
[tool.hatch.build.targets.wheel]
only-include = ["src"]
sources = ["src"]
# https://peps.python.org/pep-0621/
[project]
name = "pymmcore-gui"
dynamic = ["version"]
description = "A Micro-Manager GUI based on pymmcore-widgets and pymmcore-plus."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "BSD-3-Clause" }
authors = [
{ email = "[email protected]", name = "Federico Gasparoli" },
{ name = "Talley Lambert", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = [
"ndv[vispy]==0.0.4",
"pymmcore-plus[cli]>=0.13.0",
"pymmcore-nano",
"pymmcore-widgets>=0.9.0",
"PyQt6==6.7.1",
"pyyaml>=6.0.2",
"qtconsole>=5.6.1",
"rich", # also in pymmcore-plus[cli] above
"superqt[cmap,iconify]>=0.7.0",
"tifffile>=2024.12.12",
"tqdm>=4.67.1",
"zarr>=2.18.3",
]
[tool.uv]
override-dependencies = ["pymmcore ; sys_platform == 'never'"]
[dependency-groups]
dev = [
"ipython>=8.30.0",
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"pyautogui>=0.9.54",
"pyinstaller>=6.11.1",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"pytest-qt>=4.4.0",
"rich>=13.9.4",
"ruff>=0.8.3",
"rust-just>=1.38.0",
"types-pyautogui>=0.9.3.20241230",
]
# same as console_scripts entry point
[project.scripts]
mmgui = "pymmcore_gui._app:main"
[project.urls]
homepage = "https://github.com/tlambert03/pymmcore-gui"
repository = "https://github.com/tlambert03/pymmcore-gui"
# https://docs.astral.sh/ruff
[tool.ruff]
line-length = 88
target-version = "py310"
src = ["src"]
# https://docs.astral.sh/ruff/rules
[tool.ruff.lint]
pydocstyle = { convention = "numpy" }
select = [
"E", # style errors
"W", # style warnings
"F", # flakes
"D", # pydocstyle
"D417", # Missing argument descriptions in Docstrings
"I", # isort
"UP", # pyupgrade
"C4", # flake8-comprehensions
"B", # flake8-bugbear
"A001", # flake8-builtins
"RUF", # ruff-specific rules
"TC", # flake8-type-checking
"TID", # flake8-tidy-imports
]
ignore = [
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
"D401", # First line should be in imperative mood (remove to opt in)
]
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = ["D", "S"]
# https://docs.astral.sh/ruff/formatter/
[tool.ruff.format]
docstring-code-format = true
skip-magic-trailing-comma = false # default is false
# https://mypy.readthedocs.io/en/stable/config_file.html
[tool.mypy]
files = "src/**/"
strict = true
disallow_any_generics = false
disallow_subclassing_any = false
show_error_codes = true
pretty = true
plugins = ["pydantic.mypy"]
# https://docs.pytest.org/
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
filterwarnings = ["error"]
# https://coverage.readthedocs.io/
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"@overload",
"except ImportError",
"\\.\\.\\.",
"raise NotImplementedError()",
"pass",
]
[tool.coverage.run]
source = ["pymmcore_gui"]
[tool.check-manifest]
ignore = [".pre-commit-config.yaml", ".ruff_cache/**/*", "tests/**/*"]
[tool.typos.default]
extend-ignore-identifiers-re = ["(?i)nd2?.*", "(?i)ome"]
[tool.typos.files]
extend-exclude = ["*.spec", "hooks/"]