-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
99 lines (90 loc) · 2.39 KB
/
setup.cfg
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
[metadata]
name = arcos-gui
version = 0.1.4
description = A napari plugin to detect and visualize collective signaling events
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/bgraedel/arcos-gui
author = Benjamin Grädel
author_email = [email protected]
license = BSD-3-Clause
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Framework :: napari
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Testing
project_urls =
Bug Tracker = https://github.com/bgraedel/arcos-gui/issues
Documentation = https://bgraedel.github.io/arcos-gui/
Source Code = https://github.com/bgraedel/arcos-gui
User Support = https://github.com/bgraedel/arcos-gui/issues
[options]
packages = find:
install_requires =
arcos4py>=0.2.3
matplotlib>=3.3.4
napari>=0.4.14
numpy>=1.22.2 ; python_version >= "3.10"
numpy>=1.22.2,<2 ; python_version < "3.10"
pandas>=1.3.5
pyarrow>=11.0.0
scikit-image>=0.20.0 ; python_version < "3.12"
scikit-image>=0.22.0 ; python_version >= "3.12"
scipy>=1.7.3
napari-timestamper
python_requires = >=3.9
include_package_data = True
package_dir =
=src
[options.packages.find]
where = src
[options.entry_points]
napari.manifest =
arcos-gui = arcos_gui:napari.yaml
[options.extras_require]
doc =
mkdocs
mkdocs-include-markdown-plugin
mkdocs-material
mkdocs-material-extensions
testing =
pyqt5
pytest
pytest-mock
pytest-qt
[options.package_data]
arcos_gui =
napari.yaml
[tool:pytest]
addopts = -v
filterwarnings =
ignore::DeprecationWarning:ipykernel
[isort]
profile = black
src_paths = arcos_gui
[flake8]
exclude = _version.py,.eggs, setup.cfg
max-line-length = 120
docstring-convention = numpy
ignore = D100, D213, D401, D413, D107, W503, E203
per-file-ignores =
_tests/*.py:D
_version.py:D
*.pyi:D
[check-manifest]
ignore =
arcos_gui/_version.py
.pre-commit-config.yaml
launch-dev.py
tox.ini
codecov.yml