-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
125 lines (116 loc) · 2.38 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
[metadata]
name = sdss-kronos
version = 2.0.0
author = John Donor
author_email = [email protected]
description = robot scheduling app for SDSS V
url = https://github.com/sdss/kronos
project_urls =
Repository = https://github.com/sdss/kronos
Documentation = https://sdss-kronos.readthedocs.org
long_description = file: README.md
long_description_content_type = text/markdown
keywords = astronomy, software
license = BSD 3-Clause License
license_file = LICENSE.md
classifiers =
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Documentation :: Sphinx
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
python_requires = >=3.7
packages = find:
package_dir =
= python
install_requires =
sdss-tree>=2.15.2
sdss-access>=0.2.3
sdsstools>=0.4.0
sdss-roboscheduler>=2.1.0
sdssdb>=0.13.1
quart
astropy
astroplan
psycopg2-binary
pyyaml
scripts =
bin/kronosversion.py
bin/checkCompletion
bin/checkOverMax
bin/summarize5
bin/make_ms
[options.packages.find]
where =
python
[options.package_data]
kronos =
etc/*
[options.extras_require]
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>=5.2.2
pytest-asyncio>=0.10.0
pytest-cov>=2.8.1
pytest-mock>=1.13.0
pytest-sugar>=0.9.2
isort>=4.3.21
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
docs =
Sphinx>=2.1.0
sphinx_bootstrap_theme>=0.4.12
[isort]
line_length = 79
sections =
FUTURE
STDLIB
THIRDPARTY
SDSS
FIRSTPARTY
LOCALFOLDER
default_section = THIRDPARTY
known_first_party = kronos
known_sdss_party =
sdssdb
sdsstools
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 kronos --cov-report html -W ignore
[coverage:run]
branch = true
include =
python/kronos/*
omit =
*/utils/*.py
*/__init__.py
[coverage:report]
exclude_lines =