From 8fba231dcef62cad79d5a12b553c2a0348ad005e Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 8 Oct 2019 12:08:37 +0200 Subject: [PATCH] fix handling of package meta data --- ansibledoctor/__init__.py | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ansibledoctor/__init__.py b/ansibledoctor/__init__.py index c296c54..cfb23f7 100644 --- a/ansibledoctor/__init__.py +++ b/ansibledoctor/__init__.py @@ -3,7 +3,8 @@ __author__ = "Robert Kaussow" __project__ = "ansible-doctor" __version__ = "0.1.0" -__license__ = "LGPLv3" +__license__ = "GPL-3.0" __maintainer__ = "Robert Kaussow" __email__ = "mail@geeklabor.de" +__url__ = "https://github.com/xoxys/ansible-doctor" __status__ = "Production" diff --git a/setup.py b/setup.py index ad5e7f4..ee0a357 100755 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( author=get_property("__author__", PACKAGE_NAME), author_email=get_property("__email__", PACKAGE_NAME), url="https://github.com/xoxys/ansible-doctor", - license=get_property("__license__", PACKAGE_NAME), + license=get_property("__url__", PACKAGE_NAME), long_description=get_readme(), long_description_content_type="text/markdown", packages=find_packages(exclude=["*.tests", "tests", "tests.*"]),