forked from astropy/astropy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
20 lines (16 loc) · 888 Bytes
/
Copy path__init__.py
File metadata and controls
20 lines (16 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
This subpackage contains developer-oriented utilities used by Astropy.
Public functions and classes in this subpackage are safe to be used by other
packages, but this subpackage is for utilities that are primarily of use for
developers or to implement python hacks. This subpackage also includes the
`astropy.utils.compat` package, which houses utilities that provide
compatibility and bugfixes across all versions of Python that Astropy supports.
For astronomy-specific utilities of general use (e.g. not specific to some
other subpackage), see the `astropy.tools` package.
"""
from .compat.odict import OrderedDict
from .misc import *
# The location of the online documentation for astropy
# This location will normally point to the current released version of astropy
online_docs_root = 'http://docs.astropy.org'