Add requeriments

This commit is contained in:
resteve 2016-04-29 13:12:09 +02:00
parent 8c4ad0b003
commit 0ad0662508
2 changed files with 9 additions and 1 deletions

View File

@ -4,8 +4,12 @@ Installing trytond_product_esale
Prerequisites
-------------
* Python 2.6 or later (http://www.python.org/)
* Python 2.7 or later (http://www.python.org/)
* trytond (http://www.tryton.org/)
* slug (https://pypi.python.org/pypi/slug)
* Genshi (https://pypi.python.org/pypi/Genshi/)
* Jinja2 (https://pypi.python.org/pypi/Jinja2)
* Simple eval (https://pypi.python.org/pypi/simpleeval)
Installation
------------

View File

@ -48,6 +48,10 @@ for dep in info.get('depends', []):
prefix = MODULE2PREFIX.get(dep, 'trytond')
requires.append(get_require_version('%s_%s' % (prefix, dep)))
requires.append(get_require_version('trytond'))
requires.append('simpleeval')
requires.append('Genshi')
requires.append('Jinja2')
requires.append('slug')
tests_require = []
dependency_links = []