From: Jacob Lifshay Date: Sun, 14 Aug 2022 22:31:45 +0000 (-0700) Subject: add rest of missing stuff for cached-property git dependency X-Git-Tag: sv_maxu_works-initial~139 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fc28a2092354be8d7b6469f245fd3a22f8844c87;p=openpower-isa.git add rest of missing stuff for cached-property git dependency --- diff --git a/setup.py b/setup.py index 67c824ea..baad4cfc 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,11 @@ install_requires = [ 'cached-property@'+cprop, ] +# git url needed for having `setup.py develop` install from libre-soc git +dependency_links = [ + cprop, +] + test_requires = [ 'nose', # best to install pia from Libre-SOC: @@ -68,6 +73,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', entry_points={