mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-01 12:09:10 +00:00
import setuptools first
there is a warning if one imports distutils before setuptools...
This commit is contained in:
parent
cd3bc97d12
commit
e54b054b2a
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -10,10 +10,10 @@
|
|||
except ImportError:
|
||||
multiprocessing = None
|
||||
|
||||
from distutils.command.clean import clean
|
||||
from setuptools.command.build_ext import build_ext
|
||||
from setuptools import setup, find_packages, Extension
|
||||
from setuptools.command.sdist import sdist
|
||||
from distutils.command.clean import clean
|
||||
|
||||
try:
|
||||
from Cython.Build import cythonize
|
||||
|
|
Loading…
Reference in a new issue