diff options
| author | Claude Paroz <claude@2xlibre.net> | 2019-03-09 09:57:11 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2019-03-09 09:57:19 +0100 |
| commit | cf03ecfe25bad24204ade9c1f2302d720cc8e32d (patch) | |
| tree | 8da2af498065e501fed5454256a56c2b4c574a2a /setup.py | |
| parent | 733d77ad1ed393869825f74803781d9b9873782e (diff) | |
| download | tablib-cf03ecfe25bad24204ade9c1f2302d720cc8e32d.tar.gz | |
Removed distutils fallback
As of https://github.com/kennethreitz/setup.py/blob/master/setup.py
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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") |
