Formal proof of pseudo 1W/2R SRAM
[soc.git] / setup.py
index 667e31be6043b4a8e9117768398f9d03c4c5b13c..14cd4c6e9508c1a6b18bd5ace84897b9c9db6bb1 100644 (file)
--- 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
@@ -16,11 +15,9 @@ version = '0.0.1'
 
 install_requires = [
     #    'sfpy',    # needs manual patching
-    'ieee754fpu',   # uploaded (successfully, whew) to pip
-    'pygdbmi',      # safe to include
+    'libresoc-ieee754fpu',   # uploaded (successfully, whew) to pip
+    'libresoc-openpower-isa',  # uploaded (successfully, whew) to pip
     # 'nmigen-soc', # install manually from git.libre-soc.org
-    # 'ply',        # needs to be installed manually
-    'astor'         # safe to include
 ]
 
 test_requires = [
@@ -32,8 +29,9 @@ test_requires = [
 setup(
     name='libresoc',
     version=version,
-    description="A nmigen-based OpenPOWER multi-issue Hybrid CPU / VPU / GPU",
+    description="A nmigen-based OpenPOWER multi-issue Hybrid 3D CPU-VPU-GPU",
     long_description=README + '\n\n' + NEWS,
+    long_description_content_type='text/markdown',
     classifiers=[
         "Topic :: Software Development",
         "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",