X-Git-Url: https://git.libre-soc.org/?p=ieee754fpu.git;a=blobdiff_plain;f=setup.py;h=31166444366960b03fef4ec2c10e73d40b1d18ef;hp=95367ed01906d4179a76e14e7c9ad9594e739871;hb=HEAD;hpb=3976b59363117972ca151336192112674e8022e0 diff --git a/setup.py b/setup.py index 95367ed0..fb0eb726 100644 --- a/setup.py +++ b/setup.py @@ -9,8 +9,9 @@ NEWS = open(os.path.join(here, 'NEWS.txt')).read() version = '0.0.1' install_requires = [ - 'nmutil', + 'libresoc-nmutil', # 'sfpy', # XXX temporarily disabled + 'bigfloat' ] test_requires = [ @@ -18,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'},