-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
96 lines (81 loc) · 1.81 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "parallax-app"
authors = [
{ name="Hanna Lee", email="[email protected]" },
]
description = "GUI software for photogrammetry-assisted probe targeting in electrophysiology"
license = {text = "MIT"}
readme = "README.md"
keywords = ["parallax"]
dynamic = ["version"]
requires-python = "~=3.8"
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"pip",
"PyQt5>=5.15",
"pyqtgraph",
"opencv-python",
"scipy",
"pandas",
"scikit-image",
"requests",
"scikit-learn",
"plotly",
"PyQtWebEngine",
"aiohttp"
]
[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]'
]
camera = [
"spinnaker-python"
]
linters = [
'codespell',
'coverage',
'flake8',
'interrogate',
'isort',
'pytest-mock'
]
docs = [
'Sphinx',
'sphinxcontrib-video',
'sphinx-jinja',
'furo',
'docutils'
]
[tool.coverage.run]
omit = [
"*__init__*"
]
source = ["parallax", "tests"]
[tool.coverage.report]
exclude_lines = ["if __name__ == .__main__.:", "pragma: no cover"]
fail_under = 100
[tool.isort]
line_length = 120
profile = "black"
[tool.interrogate]
exclude = ["setup.py", "docs", "build"]
fail-under = 100
[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"