diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 2a9acf1..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[bdist_wheel] -universal = 1 diff --git a/setup.py b/setup.py index 9bde2bf..fb0ee13 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ version=version, description="CVSS2/3/4 library with interactive calculator for Python 2 and Python 3", long_description=long_description, + long_description_content_type="text/x-rst", url="https://github.com/RedHatProductSecurity/cvss", project_urls={ "Releases": "https://github.com/RedHatProductSecurity/cvss/releases", @@ -63,4 +64,6 @@ "cvss_calculator = cvss.cvss_calculator:main", ], }, + # to make Python 2 and Python 3 compatible wheel + options={"bdist_wheel": {"universal": "1"}}, )