removing setuptools dep for py3 and install

This commit is contained in:
Tarek Ziade 2012-02-14 21:19:03 +01:00
parent aa4a855c38
commit 232fc33060

View file

@ -1,3 +1,10 @@
import sys
ispy3 = sys.version_info[0] == 3
if ispy3:
from distutils.core import setup
else:
try: try:
from setuptools import setup from setuptools import setup
except ImportError: except ImportError: