My favorites | Sign in
Project Home Downloads Issues Source
Repository:
Checkout   Browse   Changes   Clones    
 
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
[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.1.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
Werkzeug
blinker
jinja2
babel
gaepytz
wtforms

# 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

Change log

b2379ae9e05c by Rodrigo Moraes <rodrigo.moraes> on Jul 18, 2011   Diff
Updated buildout.cfg; this is 1.0b3.
Go to: 
Sign in to write a code review

Older revisions

fee5ee6de061 by Rodrigo Moraes <rodrigo.moraes> on Apr 2, 2011   Diff
Added some deprecation warnings and
fixed some class names in docblocks.
8711a276e1a3 by Rodrigo Moraes <rodrigo.moraes> on Mar 11, 2011   Diff
Still need to use tipfy-dev in
buildout config.
b896473e95d9 by Rodrigo Moraes <rodrigo.moraes> on Feb 27, 2011   Diff
Adding auth example, unported yet.
All revisions of this file

File info

Size: 1889 bytes, 80 lines
Powered by Google Project Hosting