diff options
| author | Timo Furrer <tuxtimo@gmail.com> | 2019-03-17 16:15:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-17 16:15:22 +0100 |
| commit | 0937c9f9ecb9014a600556009516e48dd36ff00b (patch) | |
| tree | 8d92798f2576ebcaad33b15aad5f0d3f3df6fb72 | |
| parent | 25a66f95aca7dc57829dd821442891e8888ff5e2 (diff) | |
| parent | cf03ecfe25bad24204ade9c1f2302d720cc8e32d (diff) | |
| download | tablib-0937c9f9ecb9014a600556009516e48dd36ff00b.tar.gz | |
Merge pull request #358 from claudep/byedistutils
Removed distutils fallback
| -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") |
