From fc28a2092354be8d7b6469f245fd3a22f8844c87 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Sun, 14 Aug 2022 15:31:45 -0700 Subject: [PATCH] add rest of missing stuff for cached-property git dependency --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) 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={ -- 2.30.2