Skip to content

Commit

Permalink
Fix long description
Browse files Browse the repository at this point in the history
  • Loading branch information
iamjazzar committed Jun 13, 2022
1 parent a8b9b6f commit ca3cd1f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@

this_directory = Path(__file__).parent
readme_text = (this_directory / "README.md").read_text()
long_description = re.sub(re.compile("<picture?>"), "", readme_text)
long_description = re.sub(
r"(\s*<picture>\s*|\s*</picture>\s*|\s*<source .* />\s*)", "", readme_text
)

setup(
name="matn",
version="0.2.1",
version="0.2.2",
packages=["matn"],
install_requires=[],
entry_points={
Expand Down

0 comments on commit ca3cd1f

Please sign in to comment.