From c36eae0bb2f22b3e204f52a8f7fc404495da0dd2 Mon Sep 17 00:00:00 2001 From: Bill Zorn Date: Mon, 20 Aug 2018 17:39:00 -0700 Subject: [PATCH] updating some package info --- docker-build-wheels.sh | 2 ++ setup.py | 11 +++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docker-build-wheels.sh b/docker-build-wheels.sh index d328c08..80fbd00 100755 --- a/docker-build-wheels.sh +++ b/docker-build-wheels.sh @@ -10,6 +10,8 @@ for PYBIN in /opt/python/*/bin; do "${PYBIN}/pip" wheel . -w wheelhouse/ done +rm wheelhouse/*.whl + for whl in wheelhouse/*.whl; do auditwheel repair "$whl" -w wheelhouse/ done diff --git a/setup.py b/setup.py index 65daf53..6cac52c 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ import setuptools +with open('README.md', 'rt') as f: + long_description = f.read() + posit_ext = setuptools.Extension( 'sfpy.posit', ['sfpy/posit.c'], include_dirs=['SoftPosit/source/include/'], @@ -15,11 +18,15 @@ float_ext = setuptools.Extension( setuptools.setup( name='sfpy', - version='0.1.0', - description='softfloat and softposit in python', + version='0.2.0', author='Bill Zorn', author_email='bill.zorn@gmail.com', + description='softfloat and softposit in python', + long_description=long_description, url='https://github.com/billzorn/sfpy', packages=['sfpy'], ext_modules=[posit_ext, float_ext], + classifiers=[ + 'Development Status :: 4 - Beta', + ] ) -- 2.30.2