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.
setup.py
1 parent 332935d commit ee86defCopy full SHA for ee86def
pyproject.toml
@@ -52,7 +52,6 @@ module = [
52
"imapclient.interact",
53
"interact",
54
"livetest",
55
- "setup",
56
]
57
ignore_errors = true
58
setup.py
@@ -5,13 +5,14 @@
5
# Please see http://en.wikipedia.org/wiki/BSD_licenses
6
7
from os import path
8
+from typing import Dict
9
-from setuptools import setup
10
+from setuptools import setup # type: ignore[import]
11
12
# Read version info
13
here = path.dirname(__file__)
14
version_file = path.join(here, "imapclient", "version.py")
-info = {}
15
+info: Dict[str, str] = {}
16
exec(open(version_file).read(), {}, info)
17
18
desc = """\
0 commit comments