Skip to content

Commit

Permalink
update setup.py with long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
magland committed Nov 6, 2023
1 parent 95973cc commit cbdedea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks/publish-pypi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
echo "Tagged as v0.1.4"
2 changes: 1 addition & 1 deletion jinjaroot.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
projectName: isosplit6
pythonProjectVersion: 0.1.2
pythonProjectVersion: 0.1.4
projectAuthor: Jeremy Magland
projectAuthorEmail: jmagland@flatironinstitute.org
projectDescription:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,7 @@
setup(
packages=find_packages(),
ext_modules=ext_modules,
install_requires=[]
)
install_requires=[],
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
)

0 comments on commit cbdedea

Please sign in to comment.