mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-11-24 19:29:50 +00:00
19 lines
600 B
Python
19 lines
600 B
Python
|
from sprockets.mixins.media_type import __version__
|
||
|
|
||
|
needs_sphinx = '1.0'
|
||
|
extensions = ['sphinx.ext.autodoc',
|
||
|
'sphinx.ext.viewcode',
|
||
|
'sphinx.ext.intersphinx']
|
||
|
source_suffix = '.rst'
|
||
|
master_doc = 'index'
|
||
|
project = 'sprockets.mixins.media_type'
|
||
|
copyright = '2015, AWeber Communications'
|
||
|
release = __version__
|
||
|
version = '.'.join(release.split('.')[0:1])
|
||
|
|
||
|
intersphinx_mapping = {
|
||
|
'python': ('https://docs.python.org/', None),
|
||
|
'requests': ('https://requests.readthedocs.org/en/latest/', None),
|
||
|
'sprockets': ('https://sprockets.readthedocs.org/en/latest/', None),
|
||
|
}
|