X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=setup.py;h=335d62ee61cb3ee9ce7a324198691f7d2a735113;hb=refs%2Fheads%2Fmaster;hp=6cac52c36ed6ca0dae798e18999b622093dd5e44;hpb=c36eae0bb2f22b3e204f52a8f7fc404495da0dd2;p=sfpy.git diff --git a/setup.py b/setup.py index 6cac52c..335d62e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,6 @@ posit_ext = setuptools.Extension( 'sfpy.posit', ['sfpy/posit.c'], include_dirs=['SoftPosit/source/include/'], extra_objects=['SoftPosit/build/Linux-x86_64-GCC/softposit.a'], - libraries=['m'], ) float_ext = setuptools.Extension( @@ -18,15 +17,24 @@ float_ext = setuptools.Extension( setuptools.setup( name='sfpy', - version='0.2.0', + version='0.4.3', author='Bill Zorn', author_email='bill.zorn@gmail.com', + url='https://github.com/billzorn/sfpy', description='softfloat and softposit in python', long_description=long_description, - url='https://github.com/billzorn/sfpy', + long_description_content_type="text/markdown", packages=['sfpy'], ext_modules=[posit_ext, float_ext], classifiers=[ 'Development Status :: 4 - Beta', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: Implementation :: CPython', + 'License :: OSI Approved :: MIT License', ] )