-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (96 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
112 lines (96 loc) · 2.15 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
104
105
106
107
108
109
110
111
112
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "parallax-app"
authors = [
{ name="Hanna Lee", email="hanna.lee@alleninstitute.org" },
]
description = "GUI software for photogrammetry-assisted probe targeting in electrophysiology"
license = {text = "MIT"}
readme = "README.md"
keywords = ["parallax"]
dynamic = ["version"]
requires-python = "~=3.10"
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"pip",
"PyQt6>=6.10.0",
"pyqtgraph",
"opencv-python",
"scipy",
"pandas",
"scikit-image",
"requests",
"scikit-learn",
"plotly",
"PyQt6-WebEngine>=6.10.0",
"aiohttp",
"pyyaml",
"SimpleITK",
"ultralytics>=8.2.0",
"lap>=0.5.12",
"torch>=2.3.0",
"pydantic>=2"
]
[tool.setuptools.packages.find]
include = ["parallax", "ui", "img"]
exclude = ["tests", "tests.*"]
[tool.setuptools.package-data]
exclude = ["tests", "tests/*"]
[tool.setuptools.dynamic]
version = {attr = "parallax.__version__"}
readme = {file = "README.md"}
[project.optional-dependencies]
dev = ['parallax-app[linters]']
linters = [
'codespell',
'coverage',
'ruff',
'interrogate',
'pytest-mock'
]
docs = [
'Sphinx',
'sphinxcontrib-video',
'sphinx-jinja',
'furo',
'docutils'
]
test = [
"pytest>=7",
"pytest-qt>=4.4.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.10.0",
"opencv-python-headless",
]
[tool.coverage.run]
omit = [
"*__init__*"
]
source = ["parallax"]
[tool.coverage.report]
exclude_lines = ["if __name__ == .__main__.:", "pragma: no cover"]
fail_under = 70
[tool.interrogate]
exclude = ["setup.py", "docs", "build"]
fail-under = 70
[tool.ruff]
line-length = 120
exclude = [
".git",
"__pycache__",
"docs",
"tests",
]
[tool.ruff.lint]
# Enable Pyflakes (F), pycodestyle (E, W), and isort (I)
select = ["F", "E", "W", "I"]
[tool.codespell]
skip = ".git,*.json,*.log"
[tool]
homepage = "https://github.com/AllenNeuralDynamics/parallax"
repository = "https://github.com/AllenNeuralDynamics/parallax"
documentation = "https://github.com/AllenNeuralDynamics/parallax/wiki"