Commit 143a24ff authored by Guy Rozendorn's avatar Guy Rozendorn

Try using setuptools in setup.py, allow bdist_egg where possible

parent f6b07dae
from distutils.core import setup, Extension
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
from distutils.sysconfig import get_python_lib
import os, os.path
import sys
......
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