-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
140 lines (131 loc) · 4.1 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[metadata]
name = aces
author = ACES team
author_email =
license = BSD 3-Clause
license_file = licenses/LICENSE.rst
url = https://github.com/ACES-CMZ/reduction_ACES
description = ACES data reduction stuff
long_description = file: README.rst
long_description_content_type = text/x-rst
edit_on_github = False
github_project = ACES-CMZ/reduction_ACES
[options]
zip_safe = False
packages = find:
python_requires = >=3.6
setup_requires = setuptools_scm
install_requires =
astropy
astroquery
scipy
numpy
matplotlib
radio-beam
spectral-cube
regions
reproject
[options.extras_require]
test =
pytest-astropy
astropy
astroquery
matplotlib
scipy
numpy
ghapi
radio-beam
spectral-cube @ git+https://github.com/radio-astro-tools/spectral-cube.git@master
regions
reproject
tqdm
docs =
sphinx-astropy
all =
astropy
astroquery
matplotlib
scipy
numpy
ghapi
radio-beam
spectral-cube @ git+https://github.com/radio-astro-tools/spectral-cube.git@master
regions
reproject
tqdm
[options.package_data]
aces = data/*
aces.pipeline_scripts = *.json
[options.entry_points]
console_scripts =
aces_giantcube_analysis = aces.analysis.giantcube_cuts:main
aces_cube_stats_grid = aces.analysis.cube_stats_grid:main
aces_cube_stats_grid_feathered = aces.analysis.cube_stats_grid_feathered:main
aces_imstats = aces.analysis.imstats:main
aces_statcont = aces.analysis.statcont_cubes:main
aces_toast = aces.visualization.toast_aces:main
aces_mosaic_12m = aces.imaging.mosaic_12m:main
aces_mosaic_7m = aces.imaging.mosaic_7m:main
aces_mosaic_TP = aces.imaging.mosaic_TP:main
aces_ghapi_update = aces.hipergator_scripts.ghapi_update:main
aces_generate_spw33_commands = aces.pipeline_scripts.generate_spw33_commands:main
aces_link_repipeline_weblogs = aces.hipergator_scripts.link_repipeline_weblogs:main
aces_job_runner = aces.hipergator_scripts.job_runner:main
aces_delivery_status = aces.hipergator_scripts.delivery_status:main
aces_make_humanreadable_links = aces.retrieval_scripts.make_humanreadable_links:main
aces_retrieve_data = aces.retrieval_scripts.retrieve_data:main
aces_retrieve_weblogs = aces.retrieval_scripts.retrieve_weblogs:main
aces_recover_tclean_commands = aces.pipeline_scripts.recover_tclean_commands:main
aces_write_tclean_scripts = aces.imaging.write_tclean_scripts:main
aces_uvhistograms = aces.analysis.uvhistograms:main
[tool:pytest]
testpaths = "aces"
astropy_header = true
text_file_format = rst
[coverage:run]
omit =
aces/_astropy_init*
aces/conftest.py
aces/*setup_package*
aces/tests/*
aces/*/tests/*
aces/extern/*
aces/version*
*/aces/_astropy_init*
*/aces/conftest.py
*/aces/*setup_package*
*/aces/tests/*
*/aces/*/tests/*
*/aces/extern/*
*/aces/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_
[flake8]
max-line-length = 250
ignore = W504,E265,F401,W292,E261,E262,E124,W503,E266
per-file-ignores =
aces/joint_deconvolution/clean_HNCO_12m_7m.py:E221,E251,F821
aces/joint_deconvolution/make_region_list.py:E124,E221,E226
aces/imaging/make_mosaic_12m.py:E226,F841
aces/imaging/mosaic_12m.py:E226,F841,E128
aces/imaging/parallel_tclean.py:E303,F541,E122
aces/hipergator_scripts/job_runner.py:W503
aces/imaging/TP-ACA-feather.py:W504,E265,F401,W292
aces/imaging/12m-7mPlusTP-feather.py:W504,E265,F401,W292
aces/pipeline_scripts/merge_tclean_commands.py:E124
aces/hipergator_scripts/fix_multibeam_Aug1_2023.py:E501
aces/analysis/giantcube_cuts.py:E501,E503
aces/analysis/latex_table.py:E126