-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
44 lines (42 loc) · 1.07 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
[metadata]
name = echo
url = https://github.com/glue-viz/echo
author = Chris Beaumont and Thomas Robitaille
author_email = [email protected]
maintainer = Chris Beaumont and Thomas Robitaille
maintainer_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Operating System :: OS Independent
Topic :: Utilities
license = MIT
description = Callback Properties in Python
long_description = file: README.rst
[options]
zip_safe = True
packages = find:
python_requires = >=3.8
setup_requires = setuptools_scm
install_requires =
numpy
importlib_metadata; python_version<'3.9'
[options.extras_require]
test =
pytest
pytest-cov
docs =
sphinx
sphinx-automodapi
numpydoc
sphinx-rtd-theme
qt =
qtpy
PyQt5>=5.14