forked from mpl-extensions/mpl-interactions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
90 lines (86 loc) · 2.04 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
[metadata]
name = mpl_interactions
author = Ian Hunt-Isaak
author_email = [email protected]
maintainer_email = [email protected]
description = Matplotlib aware interact functions
long_description = file: README.md
long_description_content_type = text/markdown
project_urls =
Tracker = https://github.com/ianhi/mpl-interactions/issues
Changelog = https://github.com/ianhi/mpl-interactions/releases
Documentation = https://mpl-interactions.rtfd.io
Source = https://github.com/ianhi/mpl-interactions
classifiers =
Framework :: Jupyter
Framework :: Matplotlib
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords =
IPython
Jupyter
Matplotlib
Widgets
license = BSD
platforms = Linux, Mac OS X, Windows
[options]
python_requires = >=3.6
install_requires =
matplotlib >= 3.4
packages = find:
[options.extras_require]
jupyter =
ipywidgets >= 7.5.0
ipympl >= 0.5.8
; Developer requirements
doc =
%(jupyter)s
jupyter-sphinx
mpl-playback >= 0.1.1
myst-nb
numpydoc
Sphinx >= 1.5
sphinx-book-theme
sphinx-copybutton
sphinx-gallery >= 0.8.2
sphinx-panels
sphinx-thebe
sphinx-togglebutton
xarray
sty =
black
isort
test =
nbval
pandas
PyQt5
pytest
pytest-mpl
requests
scipy
xarray
scikit-image
dev =
%(doc)s
%(jupyter)s
%(sty)s
%(test)s
pre-commit
sphinx-autobuild
tox >= 1.9 # for skip_install, use_develop
[flake8]
max-line-length = 88
docstring-convention = numpy
ignore = D100, D213, D401, D413, D107, W503, E501, E231, W291
per-file-ignores =
*/__init__.py: F401, F403
mpl_interactions/ipyplot.py: F401
tests/test_pyplot.py: F811