-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
94 lines (86 loc) · 2.32 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
91
92
93
94
[metadata]
name = obstools
description = Collection of Observer Tools for the Lowell Discovery Telescope
long_description = file: README.md
long_description_content_type = text/markdown
author = Timothy P. Ellsworth Bowers
author_email = [email protected]
license = MPL-2.0
url = https://github.com/LowellObservatory/LDTObserverTools
edit_on_github = False
github_project = LowellObservatory/LDTObserverTools
keywords = obstools
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Documentation :: Sphinx
Topic :: Scientific/Engineering :: Astronomy
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: User Interfaces
[options]
zip_safe = False
use_2to3=False
packages = find:
python_requires = >=3.10,<3.13
setup_requires = setuptools_scm
include_package_data = True
install_requires =
setuptools
setuptools_scm
astropy>=5.1
darkdetect
ccdproc
matplotlib
numpy>=1.24,<2.0.0
scipy>=1.9
PySimpleGUI-4-foss
requests
tqdm
[options.extras_require]
docs =
sphinx>=1.6
sphinx-automodapi
sphinx-subfigure
sphinx_rtd_theme
broker =
pyyaml
stomp.py
xmltodict
pypeit =
pypeit[specutils]>=1.15.0
test =
pytest>=7.0.0
pytest-astropy
tox
dev =
sphinx>=1.6
sphinx-automodapi
sphinx-subfigure
sphinx_rtd_theme
pylint
black
pypeit[specutils]>=1.15.0
pyyaml
stomp.py
xmltodict
pytest>=7.0.0
pytest-astropy
tox
[options.entry_points]
console_scripts =
deveny_grangle = obstools.deveny_grangle:DevenyGrangle.entry_point
deveny_collfocus = obstools.deveny_collfocus:DevenyCollfocus.entry_point
dfocus = obstools.dfocus:DFocus.entry_point
fix_ldt_header = obstools.fix_ldt_header:FixLdtHeader.entry_point
lmi_etc = obstools.lmi_etc:LmiEtc.entry_point
neocp_ephem = obstools.neocp_ephem:NeocpEphem.entry_point
scrub_deveny_pickup = obstools.scrub_deveny_pickup:ScrubDevenyPickup.entry_point
[tool:pytest]
testpaths = "obstools/tests"