Merge pull request #6 from charles-dyfis-net/prefer-setuptools

Use setuptools when available
This commit is contained in:
Tarek Ziade 2013-04-22 13:27:45 -07:00
commit 56597fb23f
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: