X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/4409cffcddd60c95618ad19908fdc4f9097e8caa..430dff79f35801b018bfa1af2cc293f1a230a737:/setup.py diff --git a/setup.py b/setup.py index 257889b..2aff11f 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # You should have received a copy of the GNU General Public License # along with LinPy. If not, see . -from distutils.core import setup, Extension +from setuptools import setup, Extension with open('linpy/_version.py') as file: @@ -35,9 +35,10 @@ setup( author='MINES ParisTech', url='https://scm.cri.mines-paristech.fr/git/linpy.git', packages=['linpy'], - ext_modules = [ + ext_modules=[ Extension('linpy._islhelper', sources=['linpy/_islhelper.c'], libraries=['isl']) - ] + ], + test_suite='linpy.tests' )