remove quotes because we are passing the function through
[soc.git] / setup.py
index 8f83c591234f4566b481f784af1c66d70fee7136..b1b99eb062802e16bb9aeff7f3ca9907762be36b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,10 @@ NEWS = open(os.path.join(here, 'NEWS.txt')).read()
 version = '0.0.1'
 
 install_requires = [
-    'sfpy',
+#    'sfpy',
+    'ieee754fpu', # needs to be installed manually
+    'pygdbmi',
+    'ply', # needs to be installed manually
 ]
 
 test_requires = [
@@ -17,19 +20,19 @@ test_requires = [
 ]
 
 setup(
-    name='ieee754fpu',
+    name='soc',
     version=version,
-    description="A nmigen IEEE754 Floating-Point library",
+    description="A nmigen-based OpenPOWER 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'},