diff options
| -rw-r--r-- | setup.py | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -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' + ], ) |
