X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=setup.py;h=f8f65cc137c74bb7f07091f06e7a0bb3ec2a5e46;hb=a938111eb3b1ffc51874cef672e8051efdafa3c0;hp=fa48c40b91d8d5e75cddb5cd6a0df5086d9248e1;hpb=756b6be9c2f867e3bb34724d2e16d1f93b43cd56;p=soc.git diff --git a/setup.py b/setup.py index fa48c40b..f8f65cc1 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,13 @@ install_requires = [ 'libresoc-ieee754fpu', # uploaded (successfully, whew) to pip 'libresoc-openpower-isa', # uploaded (successfully, whew) to pip # 'nmigen-soc', # install manually from git.libre-soc.org - "cached-property", + # git url needed for having `pip3 install -e .` install from libre-soc's git repo + "cached-property@git+https://git.libre-soc.org/git/cached-property.git@1.5.2#egg=cached-property-1.5.2", +] + +# git url needed for having `setup.py develop` install from libre-soc's git repo +dependency_links = [ + "git+https://git.libre-soc.org/git/cached-property.git@1.5.2#egg=cached-property-1.5.2", ] test_requires = [ @@ -49,6 +55,7 @@ setup( include_package_data=True, zip_safe=False, install_requires=install_requires, + dependency_links=dependency_links, tests_require=test_requires, test_suite='nose.collector', )