switch to exact version of cython
[ieee754fpu.git] / setup.py
index 4693b5f7a938aee73f399dfefe47657f9895b251..fb0eb7266f6a9f9ff4767082f0cd509808b3be10 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ NEWS = open(os.path.join(here, 'NEWS.txt')).read()
 version = '0.0.1'
 
 install_requires = [
-    'nmutil',
+    'libresoc-nmutil',
 #    'sfpy',  # XXX temporarily disabled
     'bigfloat'
 ]
@@ -19,19 +19,19 @@ test_requires = [
 ]
 
 setup(
-    name='ieee754fpu',
+    name='libresoc-ieee754fpu',
     version=version,
-    description="A nmigen IEEE754 Floating-Point library",
+    description="A nmigen (HDL) IEEE754 Floating-Point library",
     long_description=README + '\n\n' + NEWS,
     classifiers=[
         "Topic :: Software Development :: Libraries",
-        "License :: OSI Approved :: LGPLv3+",
+        "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
         "Programming Language :: Python :: 3",
     ],
     keywords='nmigen ieee754',
     author='Luke Kenneth Casson Leighton',
-    author_email='lkcl@libre-riscv.org',
-    url='http://git.libre-riscv.org/?p=ieee754fpu',
+    author_email='lkcl@libre-soc.org',
+    url='http://git.libre-soc.org/?p=ieee754fpu.git',
     license='GPLv3+',
     packages=find_packages('src'),
     package_dir = {'': 'src'},