-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
118 lines (109 loc) · 2.85 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
[metadata]
name = nuspacesim
description = A Simulator for Space-based Neutrino Detections
long_description = file: README.md
long_description_content_type = text/markdown
author = Alex Reustle
author_email = [email protected]
license = BSD-3-Clause-Clear
license_files = LICENSE.txt
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: C++
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords =
NASA
neutrinos
Simulation
[options]
packages = find:
install_requires =
astropy>=4.3
click>=8.0.3
cubepy
dask
dask[distributed]
h5py
matplotlib
numpy>=1.21
pydantic
rich
scipy
tomli-w
configparser;python_version<"3.8"
importlib-metadata;python_version<"3.8"
importlib-resources;python_version<"3.9"
tomli;python_version<"3.11"
python_requires = >=3.8
ext_package = nuspacesim
package_dir =
= src
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
nuspacesim = nuspacesim.apps.cli:cli
[options.package_data]
nuspacesim.data.cloud_maps =
nss_map_CloudTopPressure_01.v0.fits
nss_map_CloudTopPressure_02.v0.fits
nss_map_CloudTopPressure_03.v0.fits
nss_map_CloudTopPressure_04.v0.fits
nss_map_CloudTopPressure_05.v0.fits
nss_map_CloudTopPressure_06.v0.fits
nss_map_CloudTopPressure_07.v0.fits
nss_map_CloudTopPressure_08.v0.fits
nss_map_CloudTopPressure_09.v0.fits
nss_map_CloudTopPressure_10.v0.fits
nss_map_CloudTopPressure_11.v0.fits
nss_map_CloudTopPressure_12.v0.fits
nuspacesim.data.nuleptonsim_tables =
nu2tau_cdf.0.h5
nu2tau_pexit.0.h5
nuspacesim.data.nupyprop_tables =
nu2tau_cdf.0.h5
nu2tau_cdf.1.h5
nu2tau_cdf.2.h5
nu2tau_cdf.3.h5
nu2tau_pexit.0.h5
nu2tau_pexit.1.h5
nu2tau_pexit.2.h5
nu2tau_pexit.3.h5
nuspacesim.data.radio_params =
ionosphere_params.hdf5
waveform_params.hdf5
[bdist_wheel]
universal = 0
[tox:tox]
envlist =
py{38,39,310,311}
docs
isolated_build = True
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[testenv]
deps =
pytest
commands =
pytest {posargs:--verbose}
[testenv:docs]
description = invoke sphinx-build to build HTML docs
basepython = python3.10
deps =
sphinx
sphinx-panels
sphinx-rtd-theme
sphinx-click
commands = python -m sphinx -v -T -E -W --keep-going -bhtml -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" --color {posargs}
python -c 'import pathlib; print("documentation available under file://\{0\}".format(pathlib.Path(r"{toxworkdir}") / "docs_out" / "index.html"))'