Skip to content

Commit

Permalink
Update setup.py to only show standard image on PyPI, closes #72
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmezzetti committed Sep 18, 2023
1 parent f3cfbfc commit d03023c
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,7 +2,8 @@
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])

# Optional dependencies
extras = {}
Expand All @@ -12,7 +13,7 @@

setup(
name="paperai",
version="2.3.0",
version="2.2.1",
author="NeuML",
description="Semantic search and workflows for medical/scientific papers",
long_description=DESCRIPTION,
Expand Down

0 comments on commit d03023c

Please sign in to comment.