From 258f598706dfbebcd867e0450afa1e67f7625bbf Mon Sep 17 00:00:00 2001 From: Bill Zorn Date: Mon, 20 Aug 2018 17:47:15 -0700 Subject: [PATCH] more package infos --- setup.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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', ] ) -- 2.30.2