more package infos
authorBill Zorn <bill.zorn@gmail.com>
Tue, 21 Aug 2018 00:47:15 +0000 (17:47 -0700)
committerBill Zorn <bill.zorn@gmail.com>
Tue, 21 Aug 2018 00:47:15 +0000 (17:47 -0700)
setup.py

index 6cac52c36ed6ca0dae798e18999b622093dd5e44..01a790baa265df9a2ff5243f239ad5080b59e24b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -18,15 +18,24 @@ float_ext = setuptools.Extension(
 
 setuptools.setup(
     name='sfpy',
-    version='0.2.0',
+    version='0.3.0',
     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',
     ]
 )