Skip to content

Commit

Permalink
fixed setup.py description
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Rauber committed Feb 14, 2020
1 parent b2cdd80 commit 46d2990
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True

[mypy-setuptools]
ignore_missing_imports = True

[tool:pytest]
filterwarnings =
ignore::DeprecationWarning
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
readme_path = join(dirname(__file__), "README.rst")
with open(readme_path, encoding="utf-8") as f:
README = f.read()
# remove raw html not supported by PyPI
README = "\n".join(README.split("\n")[3:])
except IOError:
README = ""

Expand Down

0 comments on commit 46d2990

Please sign in to comment.