summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index b75cd55a..eb3d9102 100644
--- a/setup.py
+++ b/setup.py
@@ -9,13 +9,12 @@
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER
-# pylint: disable=W0404,W0622,W0704,W0613
+# pylint: disable=W0404,W0622,W0613
"""Setup script for astroid."""
import os
-from setuptools import setup, find_packages
-from setuptools.command import easy_install
-from setuptools.command import install_lib
-
+from setuptools import find_packages, setup
+from setuptools.command import easy_install # pylint: disable=unused-import
+from setuptools.command import install_lib # pylint: disable=unused-import
real_path = os.path.realpath(__file__)
astroid_dir = os.path.dirname(real_path)