From 76cc06b38857e1422ac320a668cc87fa47fe461a Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 23 Apr 2021 19:09:16 +0100 Subject: [PATCH] update install comments --- setup.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 2fc3ddb6..5dee8fad 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,7 @@ 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.0' +version = '0.0.1' # using pip3 for ongoing development is a royal pain. seriously not # recommended. therefore a number of these dependencies have been @@ -15,13 +14,17 @@ version = '0.0.0' # manually. install_requires = [ + # ok to install using pip3 as long as it is not with the rest of Libre-SOC. # https://git.libre-soc.org/?p=nmigen.git 'nmigen', - 'nmutil', # can be obtained with pip3, best done manually + # can be obtained with pip3, best done manually + # https://git.libre-soc.org/?p=nmutil.git + 'nmutil', ] test_requires = [ 'nose', - # install pia from https://salsa.debian.org/Kazan-team/power-instruction-analyzer + # best to install pia from Libre-SOC: + # https://git.libre-soc.org/?p=power-instruction-analyzer.git 'power-instruction-analyzer' ] -- 2.30.2