summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6c2eaba3f..901b3ca84 100644
--- a/setup.py
+++ b/setup.py
@@ -31,6 +31,7 @@ import os
import sys
from distutils.command.build_py import build_py
from os.path import exists, isdir, join
+from typing import Any, Dict
try:
from setuptools import setup
@@ -49,7 +50,7 @@ except ImportError:
__docformat__ = "restructuredtext en"
base_dir = os.path.dirname(__file__)
-__pkginfo__ = {}
+__pkginfo__: Dict[str, Any] = {}
with open(os.path.join(base_dir, "pylint", "__pkginfo__.py")) as pkginfo_fp:
exec(pkginfo_fp.read(), __pkginfo__)
scripts = __pkginfo__.get("scripts", [])