From e5cba265656bb45d92d75722307ca0609bcc54b3 Mon Sep 17 00:00:00 2001 From: Janosh Riebesell Date: Sun, 2 Jul 2023 10:55:50 -0700 Subject: [PATCH] fix pypi repo link and description content type --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index cc4839b..12b098a 100644 --- a/setup.py +++ b/setup.py @@ -10,8 +10,8 @@ SETUP_PTH = os.path.dirname(os.path.abspath(__file__)) -with open(os.path.join(SETUP_PTH, "README.md")) as f: - desc = f.read() +with open(os.path.join(SETUP_PTH, "README.md")) as readme: + desc = readme.read() setup( @@ -26,9 +26,10 @@ author="Rachel Woods-Robinson, Matthew Horton", author_email="rwoodsrobinson@lbl.gov", maintainer="Rachel Woods-Robinson, Matthew Horton", - url="https://github.com/materialsproject/pymatgen-alloys", + url="https://github.com/materialsproject/pymatgen-analysis-alloys", description="A pymatgen add-on library with classes useful for describing alloy (disordered) systems.", long_description=desc, + long_description_content_type="text/markdown", keywords=["pymatgen"], classifiers=[ "Programming Language :: Python :: 3",