Use setuptools when available

This commit is contained in:
Charles Duffy 2013-04-18 17:12:02 -05:00
parent 6c43653950
commit 21d35ae336
1 changed files with 4 additions and 1 deletions

View File

@ -33,7 +33,10 @@
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as f: