aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 2cb89c3..6cd325d 100644
--- a/setup.py
+++ b/setup.py
@@ -276,9 +276,14 @@ CMD_CLASS = {
'build_ext': BuildExt,
}
+with open("README.md", "r") as f:
+ README = f.read()
+
setup(
name=NAME,
description=DESCRIPTION,
+ long_description=README,
+ long_description_content_type="text/markdown",
version=VERSION,
url=URL,
author=AUTHOR,