-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
48 lines (45 loc) · 1011 Bytes
/
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
[metadata]
name = mpl_point_clicker
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ianhi/mpl-point-clicker
author = Ian Hunt-Isaak
author_email = ianhuntisaak@gmail.com
license = BSD-3-Clause
license_files = LICENSE
classifiers =
License :: OSI Approved :: BSD License
[options]
packages = find:
install_requires =
matplotlib
numpy
classifiers =
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Framework :: Matplotlib
keywords =
Matplotlib
[options.extras_require]
doc =
autoapi
furo
numpydoc
sphinx
sphinx-autobuild
sphinx-copybutton
sphinx-gallery>=0.8.2
test =
black
mpl-playback
pytest
pytest-mpl
[flake8]
exclude = docs, _version.py, .eggs, example
max-line-length = 88
docstring-convention = "numpy"
extend-ignore =
E203, E501