From ac34f83f098c034dac0d0312642bdc45baea6241 Mon Sep 17 00:00:00 2001 From: Pedro Silva Date: Tue, 16 Jul 2019 11:27:52 +0300 Subject: [PATCH] Addresses violations in the setup.py and __about__.py This commit corrects the classifiers and sets the long description type to allow PyPi compatible wheels. --- python_transport/setup.py | 1 + python_transport/wirepas_gateway/__about__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/python_transport/setup.py b/python_transport/setup.py index 0ba7b795..25cb42dd 100644 --- a/python_transport/setup.py +++ b/python_transport/setup.py @@ -60,6 +60,7 @@ def get_requirements(*args): version=about["__version__"], description=about["__description__"], long_description=long_description, + long_description_content_type="text/markdown", author=about["__author__"], author_email=about["__author_email__"], url=about["__url__"], diff --git a/python_transport/wirepas_gateway/__about__.py b/python_transport/wirepas_gateway/__about__.py index ee55e560..5ad2a9be 100644 --- a/python_transport/wirepas_gateway/__about__.py +++ b/python_transport/wirepas_gateway/__about__.py @@ -7,7 +7,7 @@ __author__ = "Wirepas Ltd" __author_email__ = "opensource@wirepas.com" __classifiers__ = [ - "Development Status :: 5 - Stable", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Libraries",