-
Notifications
You must be signed in to change notification settings - Fork 4
/
buildout.cfg
executable file
·49 lines (42 loc) · 978 Bytes
/
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
[buildout]
#extensions = mr.developer==1.7
#sources = sources
#auto-checkout =
parts = python env django django-test
versions = versions
develop = .
eggs = django-token-auth
newest = false
download_cache = ${buildout:directory}/../downloads
[sources]
[versions]
zc.recipe.egg = 1.0.0
zc.recipe.testrunner = 1.0.0
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[django-test]
recipe = djangorecipe
version = http://code.djangoproject.com/svn/django/trunk
extra-paths =
project = token_auth
projectegg = token_auth
control_script = django-test
testrunner = runtests
settings = test_settings
eggs = ${buildout:eggs}
test = token_auth
[django]
recipe = djangorecipe
version = http://code.djangoproject.com/svn/django/trunk
extra-paths =
/home/${env:USER}/settings/
project = token_auth
projectegg = token_auth
control_script = django
settings = development_settings
eggs = ${buildout:eggs}
wsgi = true
[env]
recipe = gocept.recipe.env