-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
116 lines (106 loc) · 2.99 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
[metadata]
name = pyflct
author = The SunPy Developers
author_email = [email protected]
license = LGPLv2+
license_files = LICENSE.rst
url = https://docs.sunpy.org/projects/pyflct/
description = A Python wrapper for Fourier Local Correlation Tracking.
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Natural Language :: English
Operating System :: MacOS
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Physics
[options]
zip_safe = False
include_package_data = true
packages=find:
python_requires = >=3.10
setup_requires =
cython
setuptools_scm
install_requires =
numpy
packaging
[options.extras_require]
test =
pytest-astropy
docs =
matplotlib
sphinx
sphinx-automodapi
sphinx-changelog
sphinx-gallery
sunpy-sphinx-theme
[options.packages.find]
exclude = pyflct._dev
[options.package_data]
pyflct = data/*
[tool:pytest]
testpaths = "pyflct" "docs"
norecursedirs = ".tox" ".eggs" "build" "docs[\/]_build" "docs[\/]generated" "*.egg-info" "examples" ".history" "pyflct[\/]_dev"
filterwarnings =
error
# Do not fail on pytest config issues (i.e. missing plugins) but do show them
always::pytest.PytestConfigWarning
# https://github.com/pytest-dev/pytest-cov/issues/557
ignore:The --rsyncdir command line argument and rsyncdirs config variable are deprecated.:DeprecationWarning
[pycodestyle]
max_line_length = 110
[flake8]
max-line-length = 110
[isort]
balanced_wrapping = True
skip=docs/conf.py
default_section = THIRDPARTY
include_trailing_comma = True
known_astropy = astropy, asdf, sunpy
known_first_party = pyflct
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 =
pyflct/_sunpy_init*
pyflct/conftest.py
pyflct/*setup_package*
pyflct/tests/*
pyflct/*/tests/*
pyflct/extern/*
pyflct/version*
*/pyflct/_sunpy_init*
*/pyflct/conftest.py
*/pyflct/*setup_package*
*/pyflct/tests/*
*/pyflct/*/tests/*
*/pyflct/extern/*
*/pyflct/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_