mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
12 lines
310 B
Python
12 lines
310 B
Python
from . import _setup, __version__
|
|
|
|
|
|
def setup(app=None):
|
|
"""
|
|
The callback for Sphinx that acts as a Sphinx extension.
|
|
|
|
Add ``'configurations'`` to the ``extensions`` config variable
|
|
in your docs' ``conf.py``.
|
|
"""
|
|
_setup()
|
|
return {'version': __version__, 'parallel_read_safe': True}
|