From cbdedea30b8ba76bc1e8150c8e521f9df33f1f6e Mon Sep 17 00:00:00 2001 From: Jeremy Magland Date: Mon, 6 Nov 2023 15:00:02 -0500 Subject: [PATCH] update setup.py with long_description --- .vscode/tasks/publish-pypi.sh | 4 ++-- jinjaroot.yaml | 2 +- setup.cfg | 2 +- setup.py | 6 ++++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.vscode/tasks/publish-pypi.sh b/.vscode/tasks/publish-pypi.sh index 537bdb0..15b8dfe 100755 --- a/.vscode/tasks/publish-pypi.sh +++ b/.vscode/tasks/publish-pypi.sh @@ -44,6 +44,6 @@ done twine upload ./dist/* # Tag this commit -git tag v0.1.2 +git tag v0.1.4 -echo "Tagged as v0.1.2" \ No newline at end of file +echo "Tagged as v0.1.4" \ No newline at end of file diff --git a/jinjaroot.yaml b/jinjaroot.yaml index d6e3ffa..229481e 100644 --- a/jinjaroot.yaml +++ b/jinjaroot.yaml @@ -1,5 +1,5 @@ projectName: isosplit6 -pythonProjectVersion: 0.1.2 +pythonProjectVersion: 0.1.4 projectAuthor: Jeremy Magland projectAuthorEmail: jmagland@flatironinstitute.org projectDescription: diff --git a/setup.cfg b/setup.cfg index 62b045a..2669a4c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ # This file was automatically generated by jinjaroot. Do not edit directly. [metadata] name = isosplit6 -version = 0.1.3 +version = 0.1.4 author = Jeremy Magland author_email = jmagland@flatironinstitute.org description = None diff --git a/setup.py b/setup.py index ec52fba..fdc6018 100644 --- a/setup.py +++ b/setup.py @@ -20,5 +20,7 @@ setup( packages=find_packages(), ext_modules=ext_modules, - install_requires=[] -) \ No newline at end of file + install_requires=[], + long_description_content_type="text/markdown", + long_description=open("README.md").read(), +)