-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
58 lines (54 loc) · 1.55 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 = napari-plugin-devtools
url = https://github.com/napari/napari-plugin-devtools
license = MIT
license_file = LICENSE
description = napari plugin devtool
long_description = file: README.md
long_description_content_type = text/markdown
author = napari team
author_email = napari-steering-council@googlegroups.com
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Visualization
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Software Development :: Testing
Topic :: Software Development :: Libraries
Topic :: Utilities
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: MacOS
[options]
packages = find:
python_requires = >=3.6
install_requires =
importlib-metadata>=1.5.0
napari>=0.4.4
pkginfo
termcolor
[options.entry_points]
console_scripts =
npd = napari_plugin_devtools.__main__:main
pytest11 =
napari-plugin-devtools = napari_plugin_devtools.plugin_tester
[options.extras_require]
test =
pytest
pytest-cov
dev =
%(test)s
pre-commit
tox
tox-conda
[flake8]
max-line-length=88