summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py17
1 files changed, 14 insertions, 3 deletions
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'
+ ],
)