forked from bendudson/pyxpad
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
48 lines (44 loc) · 1.21 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
[metadata]
name = pyxpad
description = "Data visualisation and analysis tool for IDAM",
long_description = file: README.md
long_description_content_type = text/markdown
author = Ben Dudson
author_email = [email protected]
maintainer = Peter Hill
maintainer_email = [email protected]
url = https://github.com/ZedThree/pyxpad/
license = GPLv3
license_file = COPYING
classifiers =
Development Status :: 3 - Alpha
Environment :: X11 Applications :: Qt
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Physics
Topic :: Scientific/Engineering :: Visualization
[options]
packages = pyxpad
install_requires =
matplotlib>=3.1
numpy>=1.15
scipy>=1.4
Qt.py>=1.2
xdg>=4.0.1
[options.extras_require]
tests =
pytest >= 3.3.0
pytest-cov >= 2.12.1
pytest-qt >= 4.0.2
qt =
PyQt5 >= 5.15.4
[options.entry_points]
gui_scripts =
pyxpad = pyxpad.__main__:main
[bdist_wheel]
universal=0