Removed distutils fallback

As of https://github.com/kennethreitz/setup.py/blob/master/setup.py
This commit is contained in:
Claude Paroz
2019-03-09 09:57:11 +01:00
parent 733d77ad1e
commit cf03ecfe25
+2 -4
View File
@@ -5,10 +5,8 @@ import os
import re
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import setup
if sys.argv[-1] == 'publish':
os.system("python setup.py sdist upload")