From cfc88640e740fe4e0cb4c350c95f6cb2eb6b049b Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Wed, 29 Nov 2023 19:04:26 -0800 Subject: [PATCH 1/1] setup: add pyelftools v0.30 as dependency --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 37d63768..ca38ef99 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,9 @@ version = '0.0.3' cprop = "git+https://git.libre-soc.org/git/cached-property.git@1.5.2" \ "#egg=cached-property-1.5.2" +pyelftools = "git+https://git.libre-soc.org/git/pyelftools.git@v0.30" \ + "#egg=pyelftools-0.30" + # using pip3 for ongoing development is a royal pain. seriously not # recommended. therefore a number of these dependencies have been # commented out. *they are still required* - they will need installing @@ -37,11 +40,13 @@ install_requires = [ # git url needed for having `pip3 install -e .` install from libre-soc git 'cached-property@'+cprop, + "pyelftools@" + pyelftools, ] # git url needed for having `setup.py develop` install from libre-soc git dependency_links = [ cprop, + pyelftools, ] test_requires = [ -- 2.30.2