forked from pypiserver/pypiserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
81 lines (66 loc) · 1008 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
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
[buildout]
develop = .
parts =
pypi-server
show-picked-versions = true
newest = false
eggs =
pypiserver
waitress
passlib
[gunicorn]
recipe = zc.recipe.egg
eggs =
gunicorn
Paste
PasteDeploy
${pypi-server:eggs}
scripts =
gunicorn_paster
gunicorn
[pytest]
recipe = zc.recipe.egg
eggs =
pypiserver
pytest
webtest
beautifulsoup4
${buildout:eggs}
scripts =
py.test
[yolk]
recipe = zc.recipe.egg
eggs =
yolk
${gunicorn:eggs}
${pytest:eggs}
[pypi-server]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
interpreter = pypipython
scripts =
pypi-server
[ipython]
recipe = zc.recipe.egg
eggs =
ipython
${buildout:eggs}
scripts =
ipython
[versions]
distribute = 0.6.44
passlib = 1.6.1
waitress = 0.8.5
zc.recipe.egg = 2.0.0
WebOb = 1.2.3
WebTest = 2.0.6
beautifulsoup4 = 4.1.3
py = 1.4.13
pytest = 2.3.5
# Required by:
# WebTest==2.0.3
six = 1.3.0
Paste = 1.7.5.1
PasteDeploy = 1.5.0
gunicorn = 0.17.4
yolk = 0.4.3