improved goldschmidt division algorithm parameter optimization algorithm
[soc.git] / setup.py
index 25a5ebf5954d8878d5411eb6220d08c2cb7d7975..fa48c40b91d8d5e75cddb5cd6a0df5086d9248e1 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
@@ -17,7 +16,9 @@ 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
+    "cached-property",
 ]
 
 test_requires = [
@@ -29,8 +30,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+)",