libbmc/libbmc/__init__.py

16 lines
481 B
Python
Raw Normal View History

# Global list of valid paper identifier types. See README.md.
__valid_identifiers__ = []
# Import order of the modules is important, as they will populate
# `__valid_identifiers__` on load, and the order in this list reflects their
# priority.
2016-02-17 14:39:07 +01:00
from libbmc import bibtex, doi, fetcher, isbn # noqa
from libbmc import citations, papers, repositories # noqa
__version__ = "0.1.3.1"
__all__ = [
"bibtex", "doi", "fetcher", "isbn",
"citations", "papers", "repositories",
]