]> CRI, Mines Paris - PSL - linpy.git/blobdiff - setup.py
LinExpr() accepts rational numbers
[linpy.git] / setup.py
index 2aff11f619f506726b79f64822857901f1b09e33..72569e4abf3dfae7ff685f8a6836b5b376767495 100755 (executable)
--- 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 <http://www.gnu.org/licenses/>.
 
-from setuptools import setup, Extension
+from distutils.core import setup, Extension
 
 
 with open('linpy/_version.py') as file:
@@ -39,6 +39,5 @@ setup(
         Extension('linpy._islhelper',
             sources=['linpy/_islhelper.c'],
             libraries=['isl'])
-    ],
-    test_suite='linpy.tests'
+    ]
 )