-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildout.cfg
More file actions
94 lines (84 loc) · 2.91 KB
/
buildout.cfg
File metadata and controls
94 lines (84 loc) · 2.91 KB
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
87
88
89
90
91
92
93
94
############################################################
# AppEngine Toolkit - Buildout Configuration #
# ================================================== #
# DIRECTIONS: To automatically install libs from PYPI #
# (http://pypi.python.org), add the lib name to the #
# "eggs" entry in the 'app_lib' section. #
# #
# AN (INCOMPLETE) SELECTION OF USEFUL LIBS: #
# geomodel - For working with geospatial data #
# html5lib - Python parser for HTML5, full DOM #
# tarn - AppEngine unittest2 testing framework #
# nosegae - nose plugin for AppEngine testing #
# python_openid - openid consumer and provider #
# apptrace - memory profiling for AppEngine apps #
# facebook-sdk - py implementation of official FBJS SDK #
# lovely.gae - some nifty utilities for app engine #
# jinja2 - AWESOME templating engine, from Pocoo #
# webapp2 - AWESOME WSGI framework, from Rodrigo Moraes #
############################################################
[buildout]
parts =
gae_sdk
gae_tools
app_lib
extra-paths =
var/eggs
var/develop-eggs
unzip = true
relative-paths = true
exec-sitecustomize = true
extends = tools/config/versions.cfg
versions = versions
extensions = buildout.dumppickedversions
dump-picked-versions-file = tools/config/versions.cfg
download-cache = var/downloads
bin-directory = tools/bin
eggs-directory = var/eggs
parts-directory = var/parts
develop-eggs-directory = var/develop-eggs
[gae_sdk]
recipe = appfy.recipe.gae:sdk
url = http://googleappengine.googlecode.com/files/google_appengine_1.7.1.zip
[gae_tools]
recipe = appfy.recipe.gae:tools
extra-paths =
app
app/lib
app/lib/dist
var/eggs
var/develop-eggs
[app_lib]
recipe = appfy.recipe.gae:app_lib
lib-directory = app/lib/dist
use-zipimport = false
eggs =
babel # i8n utilities, from Edgewall Software (http://babel.edgewall.org)
slimmer # small package for minifying HTML, CSS and JS. (http://packages.python.org/slimmer)
gaepytz # timezone utilities, from Rodrigo again (http://code.google.com/p/gae-pytz)
wtforms # forms framework, from Simplecodes (http://wtforms.simplecodes.com/)
logbook # better logging, from Pocoo (http://packages.python.org/Logbook)
gaepytz # py timezone patches for gae
boto # amazon web services toolset
socialgraph # client lib for the google social graph API
python-openid # python openid library
# Don't copy files that match these glob patterns.
ignore-globs =
*.c
*.pyc
*.pyo
*.so
*/test
*/tests
*/django
*/testsuite
*/sqlalchemy
# Don't install these packages or modules.
ignore-packages =
ssl
site
distribute
setuptools
easy_install
pkg_resources
guppy