Skip to content

Commit

Permalink
BUG: fix twine error regarding long description
Browse files Browse the repository at this point in the history
  • Loading branch information
bsipocz committed Jan 16, 2025
1 parent 32103fb commit 0d685b3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@
# Read the contents of the README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()

setup(long_description=long_description, long_description_content_type='text/x-rst')
setup(long_description="README.rst", long_description_content_type='text/x-rst')

0 comments on commit 0d685b3

Please sign in to comment.