Skip to content

Commit 1633216

Browse files
committed
add tests
1 parent d80015b commit 1633216

File tree

3 files changed

+1855
-0
lines changed

3 files changed

+1855
-0
lines changed

astroquery/alma/__init__.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2+
"""
3+
ALMA Archive service.
4+
"""
5+
from astropy import config as _config
6+
7+
8+
class Conf(_config.ConfigNamespace):
9+
"""
10+
Configuration parameters for `astroquery.alma`.
11+
"""
12+
13+
timeout = _config.ConfigItem(60, "Timeout in seconds")
14+
15+
archive_url = _config.ConfigItem(['http://almascience.eso.org',
16+
'http://almascience.nrao.edu'],
17+
'The ALMA Archive mirror to use')
18+
19+
conf = Conf()
20+
21+
from .core import Alma, AlmaClass
22+
23+
__all__ = ['Alma', 'AlmaClass',
24+
'Conf', 'conf',
25+
]
26+
27+

0 commit comments

Comments
 (0)