Преглед изворни кода

Merge remote-tracking branch 'dcoppa/master'

Philipp Hagemeister пре 13 година
родитељ
комит
c7a725cfad
1 измењених фајлова са 5 додато и 1 уклоњено
  1. 5 1
      setup.py

+ 5 - 1
setup.py

@@ -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"""