From 9377a031f1f30ac45cd74046fcda04863a6e3718 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Tue, 27 Feb 2018 00:45:20 +0200 Subject: Fix and release v0.1.1 --- setup.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 0d1f033..b3fca70 100644 --- a/setup.py +++ b/setup.py @@ -7,10 +7,21 @@ with open(str(Path(__file__).resolve().parents[0] / 'README.rst'), encoding='utf setup( name='viewstate', - version='0.1.0', + version='0.1.1', + author='Yuval Adam', + author_email='_@yuv.al', description='.NET viewstate decoder', long_description=long_description, - homepage='https://github.com/yuvadm/viewstate', - author='Yuval Adam', + url='https://github.com/yuvadm/viewstate', + license='MIT', + python_requires='>=3.5.0', packages=find_packages(exclude=['docs', 'tests']), + classifiers=[ + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy' + ], ) -- cgit v1.3.1