summaryrefslogtreecommitdiff
path: root/setup.py
blob: a1f7cf939b97c0814982c424b367f7f817d7e950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from html import escape
from pathlib import Path
from setuptools import setup, find_packages

with open(str(Path(__file__).resolve().parents[0] / 'README.rst'), encoding='utf-8') as f:
    # HTML escape to ensure rendering on PyPI
    long_description = escape(f.read())

setup(
    name='viewstate',
    author='Yuval Adam',
    author_email='_@yuv.al',
    version='0.4.2',
    description='.NET viewstate decoder',
    long_description=long_description,
    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'
    ],
)