diff options
| author | Yuval Adam <_@yuv.al> | 2018-04-12 12:59:46 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2018-04-12 12:59:46 +0300 |
| commit | 04a1935cd2600b18c80566243a6ad88fc6712965 (patch) | |
| tree | e32982959ec1a55e479e669934d0db0c30fe9c11 | |
| parent | 6ba4fc44e5301b302fab7e8e8632d6ab8e8acfb7 (diff) | |
HTML escaping was bad ideav0.4.3
| -rw-r--r-- | setup.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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', |
