Skip to content

Commit

Permalink
Update setup.py (#693)
Browse files Browse the repository at this point in the history
Add long_description settings to setup.py to address `twine check` errors
  • Loading branch information
jamaalscarlett authored Oct 18, 2023
1 parent c68cf7e commit 0af1885
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
#!/usr/bin/env python
from setuptools import setup
from pathlib import Path

setup(use_scm_version={"version_scheme": "post-release"})
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
setup(
long_description=long_description,
long_description_content_type='text/markdown',
use_scm_version={"version_scheme": "post-release"}
)

0 comments on commit 0af1885

Please sign in to comment.