From d11ffc698d92f598d38cb4c33cf418df1e696ea6 Mon Sep 17 00:00:00 2001 From: lafrite Date: Sat, 16 May 2015 11:58:55 +0200 Subject: [PATCH] try dependencies in setup.py --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 17d4666..9e0dd46 100644 --- a/setup.py +++ b/setup.py @@ -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'] },