-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.cfg
188 lines (170 loc) · 4.08 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
[metadata]
name = panoptes-pocs
description = PANOPTES Observatory Control System
author = Project PANOPTES
author_email = developers@projectpanoptes.org
license = mit
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/panoptes/POCS
project_urls =
Documentation = https://panoptes-pocs.readthedocs.org
Forum = https://forum.projectpanoptes.org
platforms = linux
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX
Programming Language :: Python :: 3
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
[options]
zip_safe = False
include_package_data = True
package_dir =
=src
# DON'T CHANGE THE FOLLOWING LINE! IT WILL BE UPDATED BY PYSCAFFOLD!
# Add here dependencies of your project (semicolon/line-separated), e.g.
install_requires =
importlib-metadata; python_version<"3.8"
astroplan
astropy
astroquery
certifi>=2023.7.22
fastapi<0.106.0
fastapi-utils
human-readable
numpy>=1.24
panoptes-utils[config]>=0.2.40
pandas
pick
Pillow>=10.0.1
pyserial
requests>=2.31.0
scipy>=1.10.0
sparklines
transitions
typer[all]
typing-inspect
urllib3>=1.26.18
uvicorn[standard]
watchdog
# The usage of test_requires is discouraged, see `Dependency Management` docs
# tests_require = pytest; pytest-cov
# Require a specific Python version, e.g. Python 2.7 or >= 3.4
python_requires = >=3.12
packages = find_namespace:
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
# Add here additional requirements for extra features, to install with:
# `pip install POCS[google,testing]`:
focuser =
matplotlib
scipy>=1.10.0
google =
google-cloud-firestore
google-cloud-logging
google-cloud-storage
gsutil
protobuf==4.23.0
rsa
testing =
coverage
pycodestyle
pytest
pytest-cov
pytest-doctestplus
pytest-remotedata>=0.3.1
responses
sensors =
streamz
weather =
panoptes-aag
[options.entry_points]
console_scripts =
pocs = panoptes.pocs.utils.cli.main:app
[tool:pytest]
addopts =
--cov panoptes.pocs
--cov tests
--cov-branch
--cov-report term-missing:skip-covered
--cov-report xml:build/coverage.xml
--no-cov-on-fail
--doctest-modules
--doctest-ignore-import-errors
--doctest-modules
-x
-vv
norecursedirs =
docker
script
resources
dist
build
.tox
testpaths = tests src
doctest_optionflags = ELLIPSIS NORMALIZE_WHITESPACE ALLOW_UNICODE IGNORE_EXCEPTION_DETAIL
filterwarnings =
ignore:elementwise == comparison failed:DeprecationWarning
ignore::pytest.PytestDeprecationWarning
doctest_plus = enabled
markers =
theskyx
without_camera
with_camera
without_mount
with_mount
without_sensors
with_sensors
plate_solve
[aliases]
dists = bdist_wheel
[bdist_wheel]
# Use this option if your package is pure-python
universal = 1
[build_sphinx]
source_dir = docs
build_dir = build/sphinx
[flake8]
# Some sane defaults for the code style checker flake8
exclude =
.tox
build
dist
.eggs
docs/conf.py
[pycodestyle]
max-line-length = 100
[pyscaffold]
# PyScaffold's parameters when the project was created.
# This will be used when updating. Do not change!
version = 4.2.3
package = pocs
extensions =
markdown
namespace
no_skeleton
namespace = panoptes
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
ignore_errors = True