view piecrust/__init__.py @ 6:f5ca5c5bed85

More Python 3 fixes, modularization, and new unit tests.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 16 Aug 2014 08:15:30 -0700
parents f485ba500df3
children 485682a6de50
line wrap: on
line source


APP_VERSION = '2.0.0alpha'

CACHE_DIR = '_cache'
CONTENT_DIR = '_content'
TEMPLATES_DIR = '_content/templates'
PLUGINS_DIR = '_content/plugins'
THEME_DIR = '_content/theme'

CONFIG_PATH = '_content/config.yml'
THEME_CONFIG_PATH = '_content/theme_config.yml'

DEFAULT_FORMAT = 'markdown'
DEFAULT_TEMPLATE_ENGINE = 'jinja2'
DEFAULT_POSTS_FS = 'flat'
DEFAULT_DATE_FORMAT = '%b %d, %Y'
DEFAULT_PLUGIN_SOURCE = 'http://bitbucket.org/ludovicchabant/'
DEFAULT_THEME_SOURCE = 'http://bitbucket.org/ludovicchabant/'

PIECRUST_URL = 'http://bolt80.com/piecrust/'