remove quotes because we are passing the function through
[soc.git] / setup.py
index 5bb9b92ea8b60b9e5a571d13ad5b6c07eca38e4b..b1b99eb062802e16bb9aeff7f3ca9907762be36b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -9,8 +9,10 @@ NEWS = open(os.path.join(here, 'NEWS.txt')).read()
 version = '0.0.1'
 
 install_requires = [
-    'sfpy',
-    'ieee754fpu',
+#    'sfpy',
+    'ieee754fpu', # needs to be installed manually
+    'pygdbmi',
+    'ply', # needs to be installed manually
 ]
 
 test_requires = [
@@ -20,7 +22,7 @@ test_requires = [
 setup(
     name='soc',
     version=version,
-    description="A nmigen-based RISC-V Hybrid CPU / VPU / GPU",
+    description="A nmigen-based OpenPOWER Hybrid CPU / VPU / GPU",
     long_description=README + '\n\n' + NEWS,
     classifiers=[
         "Topic :: Software Development :: Libraries",