fix handling of package meta data

This commit is contained in:
Robert Kaussow 2019-10-08 12:08:37 +02:00
parent f9d4b10a96
commit 8fba231dce
2 changed files with 3 additions and 2 deletions

View File

@ -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"

View File

@ -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.*"]),