From afb1073416fc73b82c4f4a263d18116fd1a36235 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 11 Nov 2020 18:53:45 +0200 Subject: [PATCH] Adapted readme to the sdist tool --- README.md => README | 0 setup.py | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename README.md => README (100%) diff --git a/README.md b/README similarity index 100% rename from README.md rename to README diff --git a/setup.py b/setup.py index aeabfe9..b7a01a5 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ import setuptools -with open("README.md", "r") as fh: +with open("README", "r") as fh: long_description = fh.read() setuptools.setup( @@ -8,9 +8,9 @@ version="0.5.3", author="Daniel Leicht", author_email="daniel.leicht@gmail.com", - description="Read/Write Rockwell Automation Logix based PLC's", - long_description=long_description, + description="Read/Write Rockwell Automation Logix based PLCs", long_description_content_type="text/markdown", + long_description=long_description, license="Apache License 2.0", url="https://github.com/daniel-leicht/pylogix2", packages=setuptools.find_packages(),