From 1ad82646210910e85247fccae8b96dd790c9160c Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 6 Apr 2016 01:04:10 +0200 Subject: [PATCH] setup.py: replace distutils sdist by setuptools version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 180687d..76bd426 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ import subprocess from setuptools import setup, find_packages 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 as _sdist +from setuptools.command.sdist import sdist as _sdist from distutils.cmd import Command