-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
108 lines (101 loc) · 2.15 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
[metadata]
name = hera_sim
description = A collection of simulation routines describing the HERA instrument.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/HERA-Team/hera_sim
author = HERA Team
author_email = steven.g.murray@asu.edu
license = MIT
license_files = LICENSE.rst
platforms = any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
project_urls =
Documentation = https://hera_sim.readthedocs.org
[options]
packages = find:
install_requires =
astropy
astropy-healpix
cached-property
deprecation
hera-cli-utils>=0.1.0
numpy>=1.18
pyuvdata>=3.0
pyuvsim@git+https://github.com/RadioAstronomySoftwareGroup/pyuvsim #>=1.2.5
pyyaml>=5.1
rich
scipy
python_requires = >=3.9
include_package_data = True
scripts =
scripts/hera-sim-simulate.py
scripts/hera-sim-vis.py
zip_safe = False
[options.packages.find]
exclude =
tests
[options.extras_require]
all =
hera-sim[vis,bda,cal,gpu]
bda =
bda
cal =
hera-calibration@git+https://github.com/hera-team/hera_cal
dev =
hera-sim[docs,tests]
docs =
fftvis
furo
ipython
matvis>=1.2.1
nbsphinx
numpydoc>=0.8
pyradiosky>=0.1.2
sphinx>=1.8,<7.2
sphinx-autorun
gpu =
pycuda
scikit-cuda
tests =
coverage>=4.5.1
hera-sim[bda,cal,vis]
matplotlib>=3.4.2
pre-commit
pytest>=3.5.1
pytest-cov>=2.5.1
uvtools
vis =
fftvis>=0.0.7
line-profiler
matvis>=1.2.1
mpi4py
pyradiosky>=0.1.2
[tool:pytest]
addopts =
--cov hera_sim
--cov-config=.coveragerc
--cov-report xml:./coverage.xml
--durations=25
--verbose
norecursedirs =
dist
build
.tox
testpaths = hera_sim/tests
[aliases]
dists = bdist_wheel
[bdist_wheel]
universal = 1
[build_sphinx]
source_dir = docs
build_dir = build/sphinx