-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
126 lines (113 loc) · 2.62 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
[metadata]
name = stixcore
author = STIX Team
author_email =
license = BSD 3-Clause
license_file = LICENSE.rst
url =
description = STIX Core Utilities
long_description = file: README.rst
[options]
include_package_data = True
zip_safe = False
packages = find:
python_requires = >=3.9
setup_requires = setuptools_scm
install_requires =
bitstring
hissw
intervaltree
numpy
matplotlib
paramiko
polling2
python-dateutil
pyyaml
roentgen
scp
spiceypy
sunpy>=4.0.1
watchdog
requests
[options.entry_points]
console_scripts =
stix-pipeline-status = stixcore.processing.pipeline_status:main
stix-pipeline-monitor = stixcore.processing.pipeline_monitor:main
stix-pipeline = stixcore.processing.pipeline:main
stix-pipeline-cli = stixcore.processing.pipeline_cli:main
stix-publish = stixcore.processing.publish:main
[options.extras_require]
test =
pytest
pytest-astropy
pytest-cov
pytest-xdist
docs =
sphinx
sphinx-automodapi
towncrier
sunpy-sphinx-theme
[options.package_data]
stixcore = data/*
[pycodestyle]
max_line_length = 100
[flake8]
max-line-length = 100
[tool:pytest]
testpaths = "stixcore" "docs"
doctest_plus = enabled
text_file_format = rst
addopts =
--doctest-rst
--strict-markers
remote_data_strict = False
rsyncdirs = stixcore/data
filterwarnings =
ignore:Matplotlib is currently using agg:UserWarning
markers =
end2end
[isort]
balanced_wrapping = True
skip=docs/conf.py
default_section = THIRDPARTY
include_trailing_comma = True
known_astropy = astropy, asdf
known_first_party = stixcore
length_sort = False
length_sort_sections=stdlib
line_length = 100
multi_line_output = 3
no_lines_before = LOCALFOLDER
sections = STDLIB, THIRDPARTY, ASTROPY, FIRSTPARTY, LOCALFOLDER
honor_noqa = True
[coverage:run]
omit =
stixcore/_sunpy_init*
stixcore/conftest.py
stixcore/*setup_package*
stixcore/tests/*
stixcore/*/tests/*
stixcore/extern/*
stixcore/version*
*/stixcore/_sunpy_init*
*/stixcore/conftest.py
*/stixcore/*setup_package*
*/stixcore/tests/*
*/stixcore/*/tests/*
*/stixcore/extern/*
*/stixcore/version*
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about packages we have installed
except ImportError
# Don't complain if tests don't hit assertions
raise AssertionError
raise NotImplementedError
# Don't complain about script hooks
def main\(.*\):
# Ignore branches that don't pertain to this version of Python
pragma: py{ignore_python_version}
# Don't complain about IPython completion helper
def _ipython_key_completions_