connect up LD/ST matrix properly
[soc.git] / setup.py
index 8f83c591234f4566b481f784af1c66d70fee7136..4f4f03381c809ab29354c14ada606ffb02e0ae9a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,8 @@ NEWS = open(os.path.join(here, 'NEWS.txt')).read()
 version = '0.0.1'
 
 install_requires = [
-    'sfpy',
+#    'sfpy',
+    'ieee754fpu',
 ]
 
 test_requires = [
@@ -17,19 +18,19 @@ test_requires = [
 ]
 
 setup(
-    name='ieee754fpu',
+    name='soc',
     version=version,
-    description="A nmigen IEEE754 Floating-Point library",
+    description="A nmigen-based RISC-V Hybrid CPU / VPU / GPU",
     long_description=README + '\n\n' + NEWS,
     classifiers=[
         "Topic :: Software Development :: Libraries",
         "License :: OSI Approved :: LGPLv3+",
         "Programming Language :: Python :: 3",
     ],
-    keywords='nmigen ieee754',
+    keywords='nmigen ieee754 libre-riscv soc',
     author='Luke Kenneth Casson Leighton',
     author_email='lkcl@libre-riscv.org',
-    url='http://git.libre-riscv.org/?p=ieee754fpu',
+    url='http://git.libre-riscv.org/?p=soc',
     license='GPLv3+',
     packages=find_packages('src'),
     package_dir = {'': 'src'},