forked from JPalmerio/zHunter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (47 loc) · 1.26 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
[metadata]
name = zhunter
version = attr: zhunter.__version__
author = Jesse Palmerio
author_email = [email protected]
description = A Python-based visualization tool for finding redshifts and manipulating astronomical spectra.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/JPalmerio/zHunter
project_urls =
Bug Tracker = https://github.com/JPalmerio/zHunter/issues
classifiers =
Programming Language :: Python :: 3.8
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Natural Language :: English
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Visualization
Development Status :: 4 - Beta
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
include_package_data = True
zip_safe = False
install_requires =
pyqt5>=5.15
pyqtgraph>=0.13.1
numpy>=1.22
astropy>=5.1
matplotlib>=3.6
pandas>=1.5
spectres>=2.1
[options.packages.find]
where = src
include = zhunter*
[options.package_data]
zhunter.ui =
*.ui
zhunter.lines =
*.csv
*.txt
[options.entry_points]
console_scripts =
zhunter = zhunter.gui:main