forked from USNavalResearchLaboratory/eispac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (57 loc) · 1.63 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
[metadata]
name = eispac
description = Python analysis tools for Hinode / EIS data
author = NRL EISPAC Development Team
url = https://github.com/USNavalResearchLaboratory/eispac
license = MIT
license_file = LICENSE.txt
keywords = solar, sun, physics, spectroscopy, Hinode, EIS
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Astronomy
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: OS Independent
[options]
zip_safe = False
python_requires = >=3.7
packages = find:
include_package_data = True
setup_requires =
setuptools_scm
install_requires =
numpy>=1.18
scipy>=1.4
matplotlib>=3.1
h5py>=2.9
astropy>=4.2.1
sunpy[net,map]>=4.0
ndcube>=2.0.0
parfive>=1.5
python-dateutil>=2.8
packaging>=19.0
tomli>=1.1.0 ; python_version < "3.11"
[options.extras_require]
test =
pytest>=4.6.3
pytest-astropy
docs =
sphinx>=4.0.2 # why is this pinned so strictly?
sphinx-automodapi>=0.13
sphinx-rtd-theme
[options.package_data]
eispac.data.test = *.h5
eispac.data.templates = *.template.*
[tool:pytest]
testpaths = "eispac"
norecursedirs = ".tox" "build" "docs[\/]_build" "docs[\/]generated" "*.egg-info" "examples" ".jupyter" ".history" "tools"
doctest_plus = enabled
text_file_format = rst
addopts = --doctest-rst
doctest_optionflags = NORMALIZE_WHITESPACE FLOAT_CMP ELLIPSIS
remote_data_strict = True