forked from mytardis/mytardis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuildout.cfg
80 lines (71 loc) · 1.39 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
[buildout]
extensions = buildout-versions
buildout_versions_file = versions.cfg
parts = django store staging oai sphinxbuilder uwsgi pylint
develop = .
eggs =
nose
coverage
django-nose
nosexcover
MyTARDIS
bpython
python-ldap
python-memcached
docutils
flexmock
compare
django-jasmine
django-smartagent
html2text
poster
requests
pygraphviz
find-links =
http://dist.plone.org/thirdparty/
versions = versions
[versions]
coverage = 3.6
django = 1.5.1
PIL = 1.1.7
lxml = 3.2.1
pylint = 0.26.0
[django]
recipe = djangorecipe
project = tardis
projectegg = tardis
settings = test_settings
eggs = ${buildout:eggs}
wsgi = true
test = tardis
[store]
recipe = z3c.recipe.mkdir
paths = var/store
[staging]
recipe = z3c.recipe.mkdir
paths = var/staging
[oai]
recipe = z3c.recipe.mkdir
paths = var/oai
[sphinxbuilder]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/docs
build = ${buildout:directory}/docs
eggs = ${buildout:eggs}
extra-paths =
${buildout:directory}/eggs/Django-1.5.1-py2.6.egg
${buildout:directory}/eggs/Django-1.5.1-py2.7.egg
[uwsgi]
recipe = shaunsephton.recipe.uwsgi
eggs = ${buildout:eggs}
module = mytardis_wsgi
master = true
no-orphans = true
workers = 5
[pylint]
recipe = zc.recipe.egg
eggs = pylint
${buildout:eggs}
versions = versions
entry-points = pylint=pylint.lint:Run
arguments = sys.argv[1:]