1
0
mirror of https://github.com/pypiserver/pypiserver synced 2024-11-15 12:55:51 +01:00
pypiserver/buildout.cfg

82 lines
1008 B
INI
Raw Normal View History

2013-01-04 02:09:11 +01:00
[buildout]
develop = .
2013-03-20 22:47:39 +01:00
parts =
pypi-server
show-picked-versions = true
2013-01-04 02:09:11 +01:00
newest = false
eggs =
2013-03-20 22:47:39 +01:00
pypiserver
waitress
passlib
2013-01-04 02:09:11 +01:00
[gunicorn]
2013-03-20 22:47:39 +01:00
recipe = zc.recipe.egg
2013-01-04 02:09:11 +01:00
eggs =
2013-03-20 22:47:39 +01:00
gunicorn
Paste
PasteDeploy
${pypi-server:eggs}
scripts =
gunicorn_paster
gunicorn
2013-01-04 02:09:11 +01:00
[pytest]
2013-03-20 22:47:39 +01:00
recipe = zc.recipe.egg
2013-01-04 02:09:11 +01:00
eggs =
2013-03-20 22:47:39 +01:00
pypiserver
pytest
webtest
beautifulsoup4
${buildout:eggs}
scripts =
py.test
2013-01-04 02:09:11 +01:00
2013-05-29 00:46:51 +02:00
[yolk]
recipe = zc.recipe.egg
eggs =
yolk
${gunicorn:eggs}
${pytest:eggs}
2013-01-04 02:09:11 +01:00
[pypi-server]
2013-03-20 22:47:39 +01:00
recipe = zc.recipe.egg
2013-01-04 02:09:11 +01:00
eggs = ${buildout:eggs}
interpreter = pypipython
2013-03-20 22:47:39 +01:00
scripts =
pypi-server
2013-01-04 02:09:11 +01:00
[ipython]
2013-03-20 22:47:39 +01:00
recipe = zc.recipe.egg
2013-01-04 02:09:11 +01:00
eggs =
2013-03-20 22:47:39 +01:00
ipython
${buildout:eggs}
scripts =
ipython
2013-01-04 02:09:11 +01:00
[versions]
2013-05-29 00:46:51 +02:00
distribute = 0.6.44
2013-03-20 22:47:39 +01:00
passlib = 1.6.1
2013-05-29 00:46:51 +02:00
waitress = 0.8.5
zc.recipe.egg = 2.0.0
2013-01-04 02:09:11 +01:00
2013-03-20 22:47:39 +01:00
WebOb = 1.2.3
2013-05-29 00:46:51 +02:00
WebTest = 2.0.6
2013-03-20 22:47:39 +01:00
beautifulsoup4 = 4.1.3
py = 1.4.13
2013-05-29 00:46:51 +02:00
pytest = 2.3.5
2013-01-04 02:09:11 +01:00
2013-03-20 22:47:39 +01:00
# Required by:
# WebTest==2.0.3
2013-05-29 00:46:51 +02:00
six = 1.3.0
Paste = 1.7.5.1
PasteDeploy = 1.5.0
gunicorn = 0.17.4
yolk = 0.4.3