-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
87 lines (79 loc) · 1.97 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
[metadata]
name = mcalf
description = "MCALF: Multi-Component Atmospheric Line Fitting"
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Conor MacBride
author_email = [email protected]
license = BSD 2-Clause
license_file = LICENSE.rst
url = https://github.com/ConorMacBride/mcalf/
keywords = spectrum, spectra, fitting, absorption, emission, voigt
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: C
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
project_urls =
Documentation = https://mcalf.macbride.me/
[options]
python_requires = >=3.7
package_dir =
= src
packages = find:
include_package_data = True
install_requires =
astropy>=4.2
matplotlib>=3.1
numpy>=1.18
pathos>=0.2.5
pyyaml>=5.1
scikit-learn>=0.22
scipy>=1.4
[options.extras_require]
tests =
pytest
pytest-cov
pytest-mpl
tox
docs =
sphinx
# see docs/requirements.txt for sphinx-automodapi
# sphinx-automodapi
ipykernel
nbsphinx
sphinx-rtd-theme
sphinx-gallery
pytest
setuptools_scm
[options.packages.find]
where = src
[bdist_wheel]
# the Py_LIMITED_API version hex in voigt.c should match the version specified here
py_limited_api = cp38
[tool:pytest]
addopts = --doctest-modules
markers =
mpl_image_compare
filterwarnings =
ignore:Spectra should be fully processed before loading into MCALF.
ignore:Data has no positive values, and therefore cannot be log-scaled.
[coverage:run]
omit =
*/mcalf/tests/*
[flake8]
max-line-length = 120
[isort]
include_trailing_comma = True
length_sort = False
length_sort_sections = stdlib
line_length = 120
multi_line_output = 3
skip = mcalf/profiles/voigt.py