distutils: add missing import

This commit is contained in:
Frédéric Péters 2018-01-26 12:23:07 +01:00
parent 8ec75c5dee
commit b545115b45
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ from setuptools.command.install_lib import install_lib as _install_lib
from distutils.command.build import build as _build
from distutils.command.sdist import sdist
from distutils.cmd import Command
from distutils.spawn import find_executable
from setuptools import setup, find_packages
class eo_sdist(sdist):