equal
deleted
inserted
replaced
|
1 [buildout] |
|
2 extends = http://download.ztfy.org/pyams/pyams-{{ cookiecutter.pyams_release }}.cfg |
|
3 find-links = http://download.ztfy.org/eggs/ |
|
4 |
|
5 socket-timeout = 3 |
|
6 show-picked-versions = true |
|
7 newest = false |
|
8 |
|
9 allow-hosts = |
|
10 *.python.org |
|
11 *.sourceforge.net |
|
12 github.com |
|
13 bitbucket.org |
|
14 download.ztfy.org |
|
15 |
|
16 versions = versions |
|
17 eggs-directory = {{ cookiecutter.eggs_directory }} |
|
18 |
|
19 #activate this if you want to use a cache dir, you will have to create the dir |
|
20 #download-cache = ${buildout:directory}/downloads |
|
21 |
|
22 parts = |
|
23 pyramid |
|
24 |
|
25 develop = |
|
26 . |
|
27 |
|
28 [pyramid] |
|
29 recipe = zc.recipe.egg |
|
30 dependent-scripts = true |
|
31 eggs = |
|
32 aiohttp |
|
33 aiohttp_wsgi |
|
34 {%- if cookiecutter.cache_server.startswith('memcached://') %} |
|
35 aiomcache |
|
36 {%- endif %} |
|
37 aiopyramid |
|
38 {%- if cookiecutter.cache_server.startswith('redis://') %} |
|
39 aioredis |
|
40 {%- endif %} |
|
41 aiozmq |
|
42 gunicorn |
|
43 msgpack-python |
|
44 pyams_cache |
|
45 pyams_notify_ws |
|
46 pyams_utils |
|
47 pyramid |
|
48 websockets |
|
49 interpreter = py |