try dependencies in setup.py

This commit is contained in:
lafrite 2015-05-16 11:58:55 +02:00
parent ee1d4f8666
commit d11ffc698d
1 changed files with 7 additions and 1 deletions

View File

@ -9,7 +9,13 @@ setup(name='Opytex',
author='Benjamin Bertrand',
author_email='lafrite@poneyworld.net',
packages=['opytex'],
install_requires=['jinja2', 'pyMath', 'path.py'],
install_requires=['jinja2==2.7.3',
'path.py==5.2',
'pyMath=1.1',
],
dependency_links=[
"git+http://http://git.poneyworld.net/pyMath/#egg=pyMath-1.1"
]
entry_points = {
"console_scripts": ['opytex= opytex.opytex:main']
},