Added setuptools management to setup.py to allow to install in develop mode

This commit is contained in:
Alberto Paro
2011-06-21 22:48:31 +02:00
parent bd49da067f
commit bcd30f05ab
+4 -1
View File
@@ -5,7 +5,10 @@ import os
import sys
import requests
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup