summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index f7c212a..3ac4a8f 100644
--- a/setup.py
+++ b/setup.py
@@ -25,10 +25,16 @@ class PyTestCommand(TestCommand):
sys.exit(errno)
+with open("README.md", "rt") as fh:
+ long_description = fh.read()
+
+
setup(
name="glucometerutils",
version="1",
description="Glucometer access utilities",
+ long_description=long_description,
+ long_description_content_type="text/markdown",
author="Diego Elio Pettenò",
author_email="flameeyes@flameeyes.com",
url="https://www.flameeyes.com/p/glucometerutils",