change distutils.core to setuptools

This commit is contained in:
Lafrite 2015-05-14 14:10:11 +02:00
parent 89a8bb1d1f
commit c1ae7266da
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
#!/usr/bin/env python
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='pyMath',
version='1.1',