Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion astropy_helpers
Submodule astropy_helpers updated 50 files
+1 −0 .gitignore
+35 −14 .travis.yml
+140 −2 CHANGES.rst
+1 −1 README.rst
+646 −423 ah_bootstrap.py
+52 −0 appveyor.yml
+29 −0 astropy_helpers/__init__.py
+0 −0 astropy_helpers/commands/__init__.py
+183 −0 astropy_helpers/commands/build_ext.py
+39 −0 astropy_helpers/commands/build_py.py
+224 −0 astropy_helpers/commands/build_sphinx.py
+14 −0 astropy_helpers/commands/install.py
+14 −0 astropy_helpers/commands/install_lib.py
+53 −0 astropy_helpers/commands/register.py
+4 −0 astropy_helpers/commands/setup_package.py
+0 −0 astropy_helpers/commands/src/compiler.c
+257 −0 astropy_helpers/distutils_helpers.py
+42 −9 astropy_helpers/git_helpers.py
+169 −823 astropy_helpers/setup_helpers.py
+4 −0 astropy_helpers/sphinx/conf.py
+17 −2 astropy_helpers/sphinx/ext/astropyautosummary.py
+59 −0 astropy_helpers/sphinx/ext/autodoc_enhancements.py
+21 −7 astropy_helpers/sphinx/ext/automodapi.py
+38 −14 astropy_helpers/sphinx/ext/automodsumm.py
+56 −0 astropy_helpers/sphinx/ext/tests/test_autodoc_enhancements.py
+6 −7 astropy_helpers/sphinx/ext/tests/test_automodapi.py
+4 −3 astropy_helpers/sphinx/ext/tests/test_automodsumm.py
+4 −3 astropy_helpers/sphinx/ext/viewcode.py
+ astropy_helpers/sphinx/local/python3links.inv
+7 −0 astropy_helpers/sphinx/local/python3links.txt
+75 −0 astropy_helpers/sphinx/themes/bootstrap-astropy/static/astropy_linkout.svg
+ astropy_helpers/sphinx/themes/bootstrap-astropy/static/astropy_logo.ico
+87 −0 astropy_helpers/sphinx/themes/bootstrap-astropy/static/astropy_logo.svg
+4 −0 astropy_helpers/sphinx/themes/bootstrap-astropy/static/bootstrap-astropy.css
+0 −2 astropy_helpers/src/setup_package.py
+135 −92 astropy_helpers/test_helpers.py
+36 −0 astropy_helpers/tests/__init__.py
+14 −5 astropy_helpers/tests/test_ah_bootstrap.py
+85 −26 astropy_helpers/tests/test_git_helpers.py
+187 −58 astropy_helpers/tests/test_setup_helpers.py
+496 −5 astropy_helpers/utils.py
+150 −56 astropy_helpers/version_helpers.py
+71 −0 continuous-integration/appveyor/install-miniconda.ps1
+47 −0 continuous-integration/appveyor/windows_sdk.cmd
+7 −0 continuous-integration/travis/install_conda_linux.sh
+7 −0 continuous-integration/travis/install_conda_osx.sh
+4 −0 continuous-integration/travis/install_graphviz_linux.sh
+4 −0 continuous-integration/travis/install_graphviz_osx.sh
+5 −2 setup.py
+7 −2 tox.ini
37 changes: 37 additions & 0 deletions astroquery/lcogt/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
LCOGT public archive Query Tool
===============

This module contains various methods for querying
LCOGT data archive as hosted by IPAC.
"""
from astropy import config as _config


class Conf(_config.ConfigNamespace):
"""
Configuration parameters for `astroquery.irsa`.
"""

server = _config.ConfigItem(
'http://lcogtarchive.ipac.caltech.edu/cgi-bin/Gator/nph-query',
'Name of the LCOGT archive as hosted by IPAC to use.'
)
row_limit = _config.ConfigItem(
500,
'Maximum number of rows to retrieve in result'
)
timeout = _config.ConfigItem(
60,
'Time limit for connecting to the LCOGT IPAC server.'
)

conf = Conf()


from .core import Lcogt, LcogtClass

__all__ = ['Lcogt', 'LcogtClass',
'Conf', 'conf',
]
Loading