From 3b82416ad34ab83283be99e7434277c84ab3d228 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Wed, 21 Dec 2016 16:11:48 -0800 Subject: [PATCH] setup: add specific dependencies for webassets, pyamf --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 40cce73c..8e31c7b4 100755 --- a/setup.py +++ b/setup.py @@ -86,8 +86,13 @@ setup( 'pyyaml', 'webencodings', 'gevent==1.1.2', - 'webassets', - ], + 'webassets==0.12.0', + 'pyamf' + ], + dependency_links=[ + 'git+https://github.com/ikreymer/webassets.git@pyinstaller#egg=webassets-0.12.0', + 'git+https://github.com/t0m/pyamf.git@python3#egg=pyamf-0.8.0' + ], tests_require=[ 'pytest', 'WebTest',