-
Notifications
You must be signed in to change notification settings - Fork 3
/
buildout.cfg
86 lines (74 loc) · 1.9 KB
/
buildout.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[buildout]
parts =
gae_sdk
gae_tools
app_lib
# Generate relative paths for eggs so that the buildout can be moved around.
relative-paths = true
# Unzip eggs automatically, if needed.
unzip = true
# Define versions for installed packages.
extends = versions.cfg
versions = versions
# Enable this to save all picked versions in the versions.cfg file.
# extensions = buildout.dumppickedversions
# dump-picked-versions-file = versions.cfg
# Keep internal stuff in a subdirectory.
download-cache = var/downloads
# Buildout bug: it doesn't honor custom egg dir this in parts/buildout/site.py
# Until it is fixed we need to use the standard eggs dir.
# eggs-directory = var/eggs
develop-eggs-directory = var/develop-eggs
parts-directory = var/parts
[gae_sdk]
# Dowloads and extracts the App Engine SDK.
recipe = appfy.recipe.gae:sdk
url = http://googleappengine.googlecode.com/files/google_appengine_1.5.0.zip
[gae_tools]
# Installs appcfg, bulkload_client, bulkloader, dev_appserver, remote_api_shell
# and python executables in the bin directory.
recipe = appfy.recipe.gae:tools
# Add these paths to sys.path in the generated scripts.
extra-paths =
app
app/lib
app/lib/dist
[app_lib]
# Sets the library dependencies for the app.
recipe = appfy.recipe.gae:app_lib
lib-directory = app/lib/dist
use-zipimport = false
# Define the packages to download. Only tipfy is included, but you can add
# others or uncomment the extra lines to add those common packages.
eggs =
tipfy
jinja2
babel
simplejson
gaepytz
wtforms
webapp2
protorpc
slimmer
lovely.gae
python-sunlightapi
gdata
# Don't copy files that match these glob patterns.
ignore-globs =
*.c
*.pyc
*.pyo
*.so
*/test
*/tests
*/testsuite
*/django
*/sqlalchemy
# Don't install these packages or modules.
ignore-packages =
distribute
setuptools
easy_install
site
ssl
pkg_resources