We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2cdd80 commit 46d2990Copy full SHA for 46d2990
setup.cfg
@@ -29,6 +29,9 @@ ignore_missing_imports = True
29
[mypy-pytest]
30
ignore_missing_imports = True
31
32
+[mypy-setuptools]
33
+ignore_missing_imports = True
34
+
35
[tool:pytest]
36
filterwarnings =
37
ignore::DeprecationWarning
setup.py
@@ -10,6 +10,8 @@
10
readme_path = join(dirname(__file__), "README.rst")
11
with open(readme_path, encoding="utf-8") as f:
12
README = f.read()
13
+ # remove raw html not supported by PyPI
14
+ README = "\n".join(README.split("\n")[3:])
15
except IOError:
16
README = ""
17
0 commit comments