mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-03-16 22:40:25 +00:00
88 lines
1.9 KiB
INI
88 lines
1.9 KiB
INI
# Buildout configuration file to deploy a development environment.
|
|
|
|
[buildout]
|
|
extensions = buildout-versions
|
|
versions = versions
|
|
# Configure directories: put buildout generated files in lib/buildout instead
|
|
# of in current directory.
|
|
bin-directory = bin
|
|
develop-eggs-directory = lib/buildout/develop-eggs
|
|
eggs-directory = lib/buildout/eggs
|
|
installed = lib/buildout/.installed.cfg
|
|
parts-directory = lib/buildout/parts
|
|
# Package index, mirrors, allowed hosts and dependency links. Those options
|
|
# control locations where buildout looks for packages.
|
|
index = https://simple.crate.io
|
|
find-links =
|
|
allow-hosts =
|
|
*.crate.io
|
|
packages.crate-cdn.com
|
|
use-dependency-links = false
|
|
# Development.
|
|
develop =
|
|
${buildout:directory}/
|
|
${buildout:directory}/demo/
|
|
parts =
|
|
django-downloadview
|
|
directories
|
|
releaser
|
|
activate
|
|
omelette
|
|
|
|
[django-downloadview]
|
|
recipe = z3c.recipe.scripts
|
|
eggs =
|
|
django-downloadview-demo
|
|
mock
|
|
bpython
|
|
nose
|
|
rednose
|
|
coverage
|
|
sphinx
|
|
sphinxcontrib-testbuild
|
|
initialization =
|
|
import os
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'demoproject.settings'
|
|
|
|
[directories]
|
|
recipe = z3c.recipe.mkdir
|
|
paths =
|
|
var/docs
|
|
docs/_static
|
|
var/test
|
|
|
|
[releaser]
|
|
recipe = z3c.recipe.scripts
|
|
eggs = zest.releaser
|
|
|
|
[activate]
|
|
recipe = evg.recipe.activate
|
|
|
|
[omelette]
|
|
recipe = collective.recipe.omelette
|
|
eggs = ${django-downloadview:eggs}
|
|
location = ${buildout:directory}/lib/omelette
|
|
|
|
[versions]
|
|
bpython = 0.10.1
|
|
buildout-versions = 1.7
|
|
collective.recipe.omelette = 0.16
|
|
coverage = 3.6
|
|
distribute = 0.6.34
|
|
Django = 1.5
|
|
django-nose = 1.2
|
|
docutils = 0.10
|
|
evg.recipe.activate = 0.5
|
|
Jinja2 = 2.6
|
|
mock = 1.0.1
|
|
nose = 1.3.0
|
|
Pygments = 1.6
|
|
python-termstyle = 0.1.10
|
|
rednose = 0.3
|
|
requests = 1.2.0
|
|
Sphinx = 1.1.3
|
|
sphinxcontrib-testbuild = 0.1.1
|
|
zc.recipe.egg = 1.3.2
|
|
z3c.recipe.mkdir = 0.5
|
|
z3c.recipe.scripts = 1.0.1
|
|
zest.releaser = 3.45
|