summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index a1f7cf9..056c29b 100644
--- a/setup.py
+++ b/setup.py
@@ -1,16 +1,14 @@
-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())
+ long_description = f.read()
setup(
name='viewstate',
author='Yuval Adam',
author_email='_@yuv.al',
- version='0.4.2',
+ version='0.4.3',
description='.NET viewstate decoder',
long_description=long_description,
url='https://github.com/yuvadm/viewstate',