add code-comments to chacha20 svp64 unit test
[openpower-isa.git] / setup.py
index 67c824eaf3ecee9abc6d5d5ccf84243072a0dffd..37d637685d42b41f91eae6be74ce883b41a5163b 100644 (file)
--- 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={
@@ -76,7 +82,9 @@ setup(
             'pyfnwriter=openpower.decoder.pseudo.pyfnwriter:pyfnwriter',
             'sv_analysis=openpower.sv.sv_analysis:main',
             'pypowersim=openpower.decoder.isa.pypowersim:run_simulation',
-            'pysvp64asm=openpower.sv.trans.svp64:asm_process'
-        ]
-    }
+            'pysvp64asm=openpower.insndb.asm:main',
+            'pysvp64db=openpower.insndb.db:main',
+            'pysvp64dis=openpower.insndb.disasm:main',
+        ],
+    },
 )