updating some package info
authorBill Zorn <bill.zorn@gmail.com>
Tue, 21 Aug 2018 00:39:00 +0000 (17:39 -0700)
committerBill Zorn <bill.zorn@gmail.com>
Tue, 21 Aug 2018 00:39:00 +0000 (17:39 -0700)
docker-build-wheels.sh
setup.py

index d328c08aa6735c049f0ce7c2802cc044bd4735c1..80fbd0086e2a1a6eafe2d834dc84106dcfc164cf 100755 (executable)
@@ -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
index 65daf538f867b4e8c2487ac07c93e83f5e23f836..6cac52c36ed6ca0dae798e18999b622093dd5e44 100644 (file)
--- 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',
+    ]
 )