Skip to content

Commit

Permalink
Update setup.py to only show standard image on PyPI, closes #48
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmezzetti committed Sep 18, 2023
1 parent 476d506 commit aaa863b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
from setuptools import find_packages, setup

with open("README.md", "r", encoding="utf-8") as f:
DESCRIPTION = f.read()
# Remove GitHub dark mode images
DESCRIPTION = "".join([line for line in f if "gh-dark-mode-only" not in line])

setup(
name="paperetl",
version="2.3.0",
version="2.2.1",
author="NeuML",
description="ETL processes for medical and scientific papers",
long_description=DESCRIPTION,
Expand Down

0 comments on commit aaa863b

Please sign in to comment.