Mercurial > piecrust2
comparison piecrust/app.py @ 1:aaa8fb7c8918
Re-arranged modules to reduce dependencies to builtin stuff.
Added `init` command.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 22 Dec 2013 08:00:24 -0800 |
parents | a212a3f2e3ee |
children | f485ba500df3 |
comparison
equal
deleted
inserted
replaced
0:a212a3f2e3ee | 1:aaa8fb7c8918 |
---|---|
5 import hashlib | 5 import hashlib |
6 import logging | 6 import logging |
7 import yaml | 7 import yaml |
8 from cache import SimpleCache | 8 from cache import SimpleCache |
9 from decorators import lazy_property | 9 from decorators import lazy_property |
10 from plugins import PluginLoader | 10 from plugins.base import PluginLoader |
11 from environment import StandardEnvironment | 11 from environment import StandardEnvironment |
12 from configuration import Configuration, merge_dicts | 12 from configuration import Configuration, merge_dicts |
13 | 13 |
14 | 14 |
15 APP_VERSION = '2.0.0alpha' | 15 APP_VERSION = '2.0.0alpha' |