From 3c30c850ff1a3b7e0544e68eea07b88ffb01de61 Mon Sep 17 00:00:00 2001 From: Pierre-Alexandre Fonta Date: Tue, 21 Aug 2018 10:20:31 +0200 Subject: [PATCH] Fix #15 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a32f7b0..aeb66b1 100644 --- a/setup.py +++ b/setup.py @@ -10,8 +10,7 @@ HERE = os.path.abspath(os.path.dirname(__file__)) # Get the long description from the README file. -# Convert to rst with: pandoc --from=markdown --to=rst README.md -o README.rst. -with open(os.path.join(HERE, "README.rst"), encoding="utf-8") as f: +with open(os.path.join(HERE, "README.md"), encoding="utf-8") as f: long_description = f.read() setup( @@ -19,6 +18,7 @@ version=VERSION, description="Module to use the annotations created with NeuroCurator.", long_description=long_description, + long_description_content_type="text/markdown", keywords="neuroscience annotation curation literature modeling parameters", url="https://github.com/BlueBrain/nat", author="Christian O'Reilly, Pierre-Alexandre Fonta",