We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6297b0d commit ad51791Copy full SHA for ad51791
setup.py
@@ -2,7 +2,8 @@
2
from setuptools import find_packages, setup
3
4
with open("README.md", "r", encoding="utf-8") as f:
5
- DESCRIPTION = f.read()
+ # Remove GitHub dark mode images
6
+ DESCRIPTION = "".join([line for line in f if "gh-dark-mode-only" not in line])
7
8
setup(
9
name="annotateai",
0 commit comments