summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2018-02-27 00:45:20 +0200
committerYuval Adam <_@yuv.al>2018-02-27 00:46:44 +0200
commit9377a031f1f30ac45cd74046fcda04863a6e3718 (patch)
tree4d79c02627d2bc984af588a9bcce832fdfdaae25 /setup.py
parent2b0cb002346b25879406167927c841bb6abc3621 (diff)
Fix and release v0.1.1v0.1.1
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'
+ ],
)