Skip to content

Commit

Permalink
fix pypi repo link and description content type
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh authored and tschaume committed Jul 5, 2023
1 parent 25f9bd4 commit e5cba26
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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",
Expand Down

0 comments on commit e5cba26

Please sign in to comment.