Skip to content

Commit

Permalink
Update setup.py
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 committed Oct 18, 2023
1 parent c68cf7e commit 9cfed3d
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

setup(use_scm_version={"version_scheme": "post-release"})
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/markdown',
use_scm_version={"version_scheme": "post-release"}
)

0 comments on commit 9cfed3d

Please sign in to comment.