Skip to content

Commit cc1c1af

Browse files
author
Alex Schworer
committed
Use setuptools instead of distutils
1 parent c07bacb commit cc1c1af

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
2-
from distutils.core import setup
1+
try:
2+
from setuptools import setup
3+
except ImportError:
4+
from distutils.core import setup
35

46
setup(name='zencoder',
57
version='0.5.2',

0 commit comments

Comments
 (0)