Skip to content

Commit 0d685b3

Browse files
committed
BUG: fix twine error regarding long description
1 parent 32103fb commit 0d685b3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@
1818
# Read the contents of the README file
1919
from pathlib import Path
2020
this_directory = Path(__file__).parent
21-
long_description = (this_directory / "README.rst").read_text()
2221

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

0 commit comments

Comments
 (0)