Try setuptools first, then fallback to distutils.core

This commit is contained in:
David Coppa 2013-01-30 15:31:38 +01:00
parent ec71c13ab8
commit a32b573ccb
1 changed files with 5 additions and 1 deletions

View File

@ -2,10 +2,14 @@
# -*- coding: utf-8 -*-
from __future__ import print_function
from distutils.core import setup
import pkg_resources
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import py2exe
"""This will create an exe that needs Microsoft Visual C++ 2008 Redistributable Package"""