-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.cfg
205 lines (192 loc) · 4.58 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
[metadata]
name = sdss-marvin
version = 2.8.1dev
author = The Marvin Developers
author_email = [email protected]
description = Toolsuite for dealing with the MaNGA dataset
url = https://github.com/sdss/marvin
project_urls =
Repository = https://github.com/sdss/marvin
Documentation = https://sdss-marvin.readthedocs.org
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = astronomy, software, marvin, manga, MaNGA
license = BSD 3-Clause License
license_file = LICENSE.md
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Database :: Front-Ends
Topic :: Documentation :: Sphinx
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Scientific/Engineering :: Astronomy
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: User Interfaces
[options]
zip_safe = False
python_requires = >=3.8
packages = find:
package_dir =
= python
include_package_data = True
install_requires =
# sdss reqs
sdsstools>=0.4
sdss-tree>=3.1.0
sdss-access>=2.0
marvin-brain>=0.3
marvin-sqlalchemy-boolean-search>=0.2
marvin-wtforms-alchemy>=0.18.0
# all else
# utility
astropy>=5.1
fuzzywuzzy>=0.15.0
python-Levenshtein>=0.12.0
raven>=5.32.0,<7.0
packaging>=20.1,<21.0
yamlordereddictloader>=0.2.2
# numerical
numpy>1.20
scipy>=0.18.1
# plotting
pandas>=1.0
matplotlib>=1.5.3
# api / web
webargs>=1.5.2,<6.0
werkzeug>=2.0,<2.1
Flask-JWT-Extended>=3.8.1,<4.0
numpyencoder>=0.3
# database
dogpile.cache>=0.6.2,<1.1
scripts =
bin/run_marvin
bin/check_marvin
[options.packages.find]
where =
python
exclude=
marvin.web*
[options.package_data]
marvin =
data/*
[options.extras_require]
extra=
dev =
%(docs)s # This forces the docs extras to install (http://bit.ly/2Qz7fzb)
ipython>=7.9.0
matplotlib>=3.1.1
flake8>=3.7.9
doc8>=0.8.0
pytest>=7.2.2
pytest-cov>=2.8.1
pytest-sugar<1.0.0
pytest-remotedata>=0.3.2
pytest-flask>=0.10.0
pytest-xdist>=1.18.1
pytest-timeout>=1.2.0
pytest-mock>=1.13.0
pytest-split>=0.8
isort>=4.3.21
coveralls>=3.0
codecov>=2.0.15
coverage[toml]>=5.0
ipdb>=0.12.3
# The following are needed because sdsstools[dev] as an extra not always
# gets installed. See https://github.com/pypa/pip/issues/4957.
invoke>=1.3.0
twine>=3.1.1
wheel>=0.33.6
# other dev depends - e.g. web tests
#uwsgi>=2.0.15 # install with "conda install -c conda-forge uwsgi" instead
psycopg2>=2.6.2,<3.0
selenium>=3.3.1
page_objects>=1.1.0
decorator>=4.1.2
pympler>=0.5
mpl-scatter-density>=0.4
msgpack>=0.5.4
msgpack-numpy>=0.4.2
Flask-Testing>=0.6.1
docs =
Sphinx>=3.1.0
sphinx_bootstrap_theme>=0.4.12
sphinxcontrib-httpdomain>=1.5.0
sphinx_issues>=1.0.0
sphinx-rtd-theme>=0.4.2
nbsphinx>=0.3.5
# added for rtd issues
photutils>=0.7
mpl-scatter-density>=0.4
jupyter_client>=5.2.3
ipykernel>5.0
web=
blinker>=1.4
Flask>=2
werkzeug>=2,<2.1
Flask-FeatureFlags>=0.6
Flask-Compress>=1.4
Flask-Limiter>=0.9.4
flask-profiler>=1.0.1
Flask-Caching>=1.4.0
Flask-Login>=0.4.1
Flask-Cors>=3.0.8
Flask-Session>=0.3.1
redis>=3.3
#uwsgi>=2.0.15 # install with "conda install -c conda-forge uwsgi" instead
# added for rtd issues
validators>=0.10.3
intervals>=0.8.0
db=
pgpasslib>=1.1.0
psycopg2>=2.6.2
Flask-Login>=0.4.1
sqlalchemy>=1.3,<2.0
[bdist_wheel]
universal=1
[isort]
line_length = 79
sections =
FUTURE
STDLIB
THIRDPARTY
FIRSTPARTY
LOCALFOLDER
default_section = THIRDPARTY
known_first_party = marvin
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 marvin --cov-report html --cov-report xml -W ignore
markers =
slow: marks tests that are slow to run
uses_db: marks tests as needing a connected local manga database
uses_web: marks test as needed a connected local marvin web server
[coverage:run]
branch = true
include =
python/marvin/*
omit =
*/utils/*.py
*/__init__.py
[coverage:report]
exclude_lines =