We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36a421 commit 5424512Copy full SHA for 5424512
1 file changed
setup.py
@@ -4,7 +4,11 @@
4
# This setup.py based on that of shout-python (py bindings for libshout,
5
# part of the icecast project, http://svn.xiph.org/icecast/trunk/shout-python)
6
7
-from distutils.core import setup, Extension
+try:
8
+ from setuptools import setup
9
+except ImportError:
10
+ from distutils.core import setup
11
+from distutils.core import Extension
12
import os
13
import sys
14
0 commit comments