forked from napari/napari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
101 lines (92 loc) · 2.88 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
100
101
[metadata]
name = napari
url = https://napari.org
download_url = https://github.com/napari/napari
license = BSD 3-Clause
license_file = LICENSE
description = n-dimensional array viewer in Python
long_description = file: README.md
long_description_content_type = text/markdown
author = napari team
author_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Environment :: X11 Applications :: Qt
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: C
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
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 :: Utilities
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
[options]
zip_safe = False
packages = find:
python_requires = >=3.7
include_package_data = True
install_requires =
appdirs>=1.4.4
cachey>=0.2.1
dask[array]>=2.1.0,!=2.28.0 # https://github.com/napari/napari/issues/1656
imageio>=2.5.0
importlib-metadata>=1.5.0 ; python_version < '3.8'
ipykernel>=5.2.0
IPython>=7.7.0
napari-plugin-engine>=0.1.8
napari-svg>=0.1.4
numpy>=1.16.0
numpydoc>=0.9.2
Pillow!=7.1.0,!=7.1.1 # not a direct dependency, but 7.1.0 and 7.1.1 broke imageio
psutil>=5.0
PyOpenGL>=3.1.0
PyYAML>=5.1
qtconsole>=4.5.1,!=4.7.6
qtpy>=1.7.0
scipy>=1.2.0
tifffile>=2020.2.16
typing_extensions
toolz>=0.10.0
typing_extensions
vispy>=0.6.4
wrapt>=1.11.1
# for explanation of %(extra)s syntax see:
# https://github.com/pypa/setuptools/issues/1260#issuecomment-438187625
# this syntax may change in the future
[options.extras_require]
pyside2 =
PySide2>=5.12.3,!=5.15.0
pyside = # alias for pyside2
%(pyside2)s
pyqt5 =
PyQt5>=5.12.3,!=5.15.0
pyqt = # alias for pyqt5
%(pyqt5)s
qt = # alias for pyqt5
%(pyqt5)s
# all will be the full "batteries included" extra.
# though for now, it's just the GUI backend
all =
%(pyqt5)s
[options.entry_points]
console_scripts =
napari = napari.__main__:main
[flake8]
# Ignores - https://lintlyci.github.io/Flake8Rules
# E203 Whitespace before ':' (sometimes conflicts with black)
# E501 line too long (84 > 79 characters) (sometimes too annoying)
# W503 Line break occurred before a binary operator
# C901 McCabe complexity test. Would be nice to re-enable, but takes work
ignore = E203,W503,E501,C901
max-line-length = 79
max-complexity = 18
exclude = _vendor,vendored,__init__.py,examples,benchmarks,napari/resources/_qt_resources*.py