Skip to content

Commit 46d2990

Browse files
author
Jonas Rauber
committed
fixed setup.py description
1 parent b2cdd80 commit 46d2990

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ ignore_missing_imports = True
2929
[mypy-pytest]
3030
ignore_missing_imports = True
3131

32+
[mypy-setuptools]
33+
ignore_missing_imports = True
34+
3235
[tool:pytest]
3336
filterwarnings =
3437
ignore::DeprecationWarning

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
readme_path = join(dirname(__file__), "README.rst")
1111
with open(readme_path, encoding="utf-8") as f:
1212
README = f.read()
13+
# remove raw html not supported by PyPI
14+
README = "\n".join(README.split("\n")[3:])
1315
except IOError:
1416
README = ""
1517

0 commit comments

Comments
 (0)