-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
132 lines (120 loc) · 2.65 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[metadata]
name = lvmdrp
version = 1.1.2dev
author = Alfredo Mejia-Narvaez
author_email = alfredoj.32@gmail.com
description = SDSSV-LVM Data Reduction Pipeline
url = https://github.com/sdss/lvmdrp
project_urls =
Repository = https://github.com/sdss/lvmdrp
long_description = file: README.md
long_description_content_type = text/markdown
keywords = astronomy, software
license = BSD 3-Clause License
license_file = LICENSE.md
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,
Topic :: Documentation :: Sphinx,
Topic :: Software Development :: Libraries :: Python Modules,
[options]
zip_safe = False
include_package_data = True
python_requires = >=3.10
packages = find:
package_dir =
= python
install_requires =
numpy>=1.24.1,<2.0.0
scipy>=1.10.1
matplotlib>=3.6.2
pandas[hdf5]>=2.0.0
tqdm>=4.64.1
astropy>=6.0
ccdproc>=2.4.0
dust_extinction>=1.1
skyfield>=1.45
pydl>=0.7.0
skycalc_cli==1.4
sdsstools>=1.4
sdss-tree>=4.0
sdss-access>=3.0
click>=8.0
cloup>=2.0
bottleneck>=1.3.7
h5py>=3.8.0
filelock>=3.14.0
numexpr==2.8.4
gaiaxpy>=2.1.0
# TODO: remove this frozen version once 0.48 is released
astroquery @ git+https://github.com/astropy/astroquery@ce1615748a26b5c34845832557c510e8fa8d849f
# TODO: add lvmscheduler dependency from the repository
# lvmscheduler @ git+ssh://git@github.com/sdss/lvmschduler@v1.1#egg=lvmscheduler
scripts =
bin/drp
bin/pix2wave
bin/envcheck
[options.packages.find]
where =
python
[options.package_data]
lvmdrp =
etc/*
[options.extras_require]
dev =
%(docs)s # This forces the docs extras to install (http://bit.ly/2Qz7fzb)
ipython>=8.10.0
jupyter>=1.0.0
jupyterlab>=3.6.1
ipywidgets>=8.1.0
ipympl==0.9.3
pytest>=7.4.3
pytest-click>=1.1.0
pytest-cov>=4.1.0
pytest-mock>=3.12.0
pytest-sugar>=0.9.7
ruff>=0.0.285
docs =
Sphinx>=5.2.0
sphinx_bootstrap_theme>=0.4.12
recommonmark>=0.6
sphinx-argparse>=0.2.5
sphinx-issues>=1.2.0
[isort]
line_length = 100
sections =
FUTURE
STDLIB
THIRDPARTY
FIRSTPARTY
LOCALFOLDER
default_section = THIRDPARTY
known_first_party = tree
balanced_wrapping = true
include_trailing_comma = false
lines_after_imports = 2
use_parentheses = true
[flake8]
ignore =
H101
E722
W504
W505
per-file-ignores =
*/__init__.py:E,W
max-line-length = 99
[tool:pytest]
addopts = --cov lvmdrp --cov-report xml --cov-report html --cov-report term -W ignore
[coverage:run]
branch = true
source =
lvmdrp
omit =
*/__init__.py
[coverage:report]
exclude_lines =