sphinx-autoapi/autoapi/settings.py

14 lines
223 B
Python
Raw Normal View History

2015-06-10 20:12:18 +00:00
"""
Basic settings for AutoAPI projects.
You shouldn't need to touch this.
"""
2015-04-08 05:54:53 +00:00
import os
2015-04-08 05:54:53 +00:00
SITE_ROOT = os.path.dirname(os.path.realpath(__file__))
TEMPLATE_DIR = os.path.join(SITE_ROOT, 'templates')
2015-10-27 18:13:08 +00:00
API_ROOT = 'autoapi'