setup: update dependencies

This commit is contained in:
Jérôme Schneider 2014-04-09 10:11:11 +02:00
parent 579ce96854
commit 7e4d9a64d7
4 changed files with 7 additions and 7 deletions

View File

@ -1,2 +1,2 @@
include COPYING MANIFEST VERSION
include COPYING MANIFEST.in VERSION
recursive-include mandaye_vincennes/templates *.html

View File

@ -223,9 +223,7 @@ class Duonet:
and 'font-weight:bold;">Conservatoire de Vincennes' in response.msg:
login = env['beaker.session'].get('unique_id')
site_name = values.get('site_name')
print site_name
current_account = get_current_account(env, values)
print current_account
if login and current_account:
disassociate = serve_template('duonet/disassociate.html',
'iso8859-15',

View File

@ -1,3 +1,4 @@
gunicorn>=0.17
pycrypto>=2.0
pycrypto>=2.6
mandaye>=0.7
BeautifulSoup>=3.1

View File

@ -11,9 +11,10 @@ from setuptools import setup, find_packages
from sys import version
install_requires=[
'gunicorn>=0.17',
'mandaye>=0.7',
'pycrypto>=2.0',
'gunicorn>=0.17',
'mandaye>=0.7',
'pycrypto>=2.6',
'BeautifulSoup>=3.1'
]
def get_version():