From: David Lord Date: Tue, 28 Jan 2020 14:41:07 +0000 (-0800) Subject: stop building universal wheel X-Git-Tag: 3.0.0a1~2^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42edc132902562e1e16f190bea60362865da894f;p=thirdparty%2Fjinja.git stop building universal wheel --- diff --git a/setup.cfg b/setup.cfg index 9dff382c..5d3d02ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,8 @@ [metadata] license_file = LICENSE.rst +long_description = file:README.rst long_description_content_type = text/x-rst -[bdist_wheel] -universal = true - [tool:pytest] testpaths = tests filterwarnings = diff --git a/setup.py b/setup.py index 050d3e22..f5ad968e 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,9 @@ -import io import re from setuptools import find_packages from setuptools import setup -with io.open("README.rst", "rt", encoding="utf8") as f: - readme = f.read() - -with io.open("src/jinja2/__init__.py", "rt", encoding="utf8") as f: +with open("src/jinja2/__init__.py", "rt", encoding="utf8") as f: version = re.search(r'__version__ = "(.*?)"', f.read(), re.M).group(1) setup( @@ -23,7 +19,6 @@ setup( maintainer="Pallets", maintainer_email="contact@palletsprojects.com", description="A very fast and expressive template engine.", - long_description=readme, classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment",