diff -r 000000000000 -r e4f314a62bbf {{cookiecutter.project_slug}}/buildout.cfg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/{{cookiecutter.project_slug}}/buildout.cfg Fri Jun 02 15:07:36 2017 +0200 @@ -0,0 +1,49 @@ +[buildout] +extends = http://download.ztfy.org/pyams/pyams-{{ cookiecutter.pyams_release }}.cfg +find-links = http://download.ztfy.org/eggs/ + +socket-timeout = 3 +show-picked-versions = true +newest = false + +allow-hosts = + *.python.org + *.sourceforge.net + github.com + bitbucket.org + download.ztfy.org + +versions = versions +eggs-directory = {{ cookiecutter.eggs_directory }} + +#activate this if you want to use a cache dir, you will have to create the dir +#download-cache = ${buildout:directory}/downloads + +parts = + pyramid + +develop = + . + +[pyramid] +recipe = zc.recipe.egg +dependent-scripts = true +eggs = + aiohttp + aiohttp_wsgi +{%- if cookiecutter.cache_server.startswith('memcached://') %} + aiomcache +{%- endif %} + aiopyramid +{%- if cookiecutter.cache_server.startswith('redis://') %} + aioredis +{%- endif %} + aiozmq + gunicorn + msgpack-python + pyams_cache + pyams_notify_ws + pyams_utils + pyramid + websockets +interpreter = py