-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.cfg
59 lines (52 loc) · 1.33 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
[metadata]
name = cellpose-napari
author = Carsen Stringer
author_email = [email protected]
license = BSD-3
description = a generalist algorithm for anatomical segmentation
url = https://github.com/Mouseland/cellpose-napari
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: OS Independent
License :: OSI Approved :: BSD License
Framework :: napari
[options]
packages = find:
install_requires =
napari
napari-plugin-engine>=0.1.4
cellpose>0.6.3
imagecodecs
include_package_data = True
python_requires = >=3.7
[options.entry_points]
napari.manifest =
cellpose-napari = cellpose_napari:napari.yaml
[options.extras_require]
docs =
sphinx>=3.0
sphinxcontrib-apidoc
sphinx_rtd_theme
sphinx-prompt
sphinx-autodoc-typehints
testing =
tox
pytest # https://docs.pytest.org/en/latest/contents.html
pytest-cov # https://pytest-cov.readthedocs.io/en/latest/
pytest-qt # https://pytest-qt.readthedocs.io/en/latest/
napari
pyqt5
[aliases]
test = pytest
[options.package_data]
cellpose_napari = napari.yaml
[options.packages.find]
exclude =
tests
tests.*