Commit f56b54ae authored by Paul Bonser's avatar Paul Bonser

Modify setup.py so 'setup.py develop' works

parent ea576566
......@@ -22,7 +22,11 @@ You should have received a copy of the GNU General Public License
along with PyCAM. If not, see <http://www.gnu.org/licenses/>.
"""
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import distutils.sysconfig
import glob
import os.path
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment