5 Aug
2009
5 Aug
'09
3:18 p.m.
This patch adds support for setuptools to the setup.py file of python-alsa.
Signed-off-by: Christopher Arndt chris@chrisarndt.de
diff --git a/setup.py b/setup.py index fa7f2d6..c2b6389 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,10 @@
import os import sys -from distutils.core import setup, Extension +try: + from setuptools import setup, Extension +except ImportError: + from distutils.core import setup, Extension
VERSION='1.0.20'