-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
112 lines (104 loc) · 2.66 KB
/
Copy pathsetup.cfg
File metadata and controls
112 lines (104 loc) · 2.66 KB
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
[metadata]
name = eovsapy
provides = eovsapy
description = "Python code and files for Expanded Owens Valley Solar Array"
long_description = file: README.rst
long_description_content_type = text/x-rst
author = The EOVSA team
author_email = sijie.yu@njit.edu
license = BSD 2-Clause
license_file = LICENSE.rst
url = https://github.com/suncasa/eovsapy
edit_on_github = True
github_project = suncasa/eovsapy
platform = any
keywords = solar physics, solar, science, sun, wcs, coordinates
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Physics
[options]
zip_safe = False
python_requires = >=3.6,!=3.7.*,<3.9
packages = find:
include_package_data = True
setup_requires =
setuptools_scm
install_requires =
mysql-connector-python
[options.extras_require]
docs =
astroquery
jplephem
packaging
reproject
ruamel.yaml
sphinx
sphinx-automodapi
sphinx-changelog>=1.1.0rc1 # First to support towncrier 21.3
sphinx-gallery>=0.9.0 # First to include the defer figures functionality
sunpy-sphinx-theme
[options.packages.find]
exclude = eovsapy._dev
[pycodestyle]
max_line_length = 110
[flake8]
max-line-length = 110
exclude =
.git,
.idea,
.eggs,
__pycache__,
build,
dist,
eovsapy/__init__.py,
rst-directives =
plot
[isort]
balanced_wrapping = True
skip = eovsapy/__init__.py
default_section = THIRDPARTY
include_trailing_comma = True
known_first_party = eovsapy
length_sort = False
length_sort_sections = stdlib
line_length = 110
multi_line_output = 3
no_lines_before = LOCALFOLDER
sections = STDLIB, THIRDPARTY, ASTROPY, FIRSTPARTY, LOCALFOLDER
[coverage:run]
omit =
eovsapy/*setup*
eovsapy/extern/*
eovsapy/shellScript/*
eovsapy/build/*
eovsapy/dist/*
eovsapy/*/tests/*
eovsapy/version*
eovsapy/__init__*
*/eovsapy/*setup*
*/eovsapy/extern/*
eovsapy/*/shellScript/*
eovsapy/*/build/*
eovsapy/*/dist/*
*/eovsapy/*/tests/*
*/eovsapy/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}