From: Luke Kenneth Casson Leighton Date: Wed, 5 May 2021 13:16:58 +0000 (+0100) Subject: add libresoc-openpower-isa to setup.py dependencies X-Git-Url: https://git.libre-soc.org/?p=soc.git;a=commitdiff_plain;h=fc82dd36b305c4c3c259bd6704f4b977bb5a24d7 add libresoc-openpower-isa to setup.py dependencies --- diff --git a/setup.py b/setup.py index 25a5ebf5..3a11dd99 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,6 @@ here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.md')).read() NEWS = open(os.path.join(here, 'NEWS.txt')).read() - version = '0.0.1' # using pip3 for ongoing development is a royal pain. seriously not @@ -17,6 +16,7 @@ version = '0.0.1' install_requires = [ # 'sfpy', # needs manual patching 'libresoc-ieee754fpu', # uploaded (successfully, whew) to pip + 'libresoc-openpower-isa', # uploaded (successfully, whew) to pip # 'nmigen-soc', # install manually from git.libre-soc.org ]