From: Bill Zorn Date: Tue, 21 Aug 2018 00:47:15 +0000 (-0700) Subject: more package infos X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=258f598706dfbebcd867e0450afa1e67f7625bbf;p=sfpy.git more package infos --- diff --git a/setup.py b/setup.py index 6cac52c..01a790b 100644 --- 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', ] )