# 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:
Extension('linpy._islhelper',
sources=['linpy/_islhelper.c'],
libraries=['isl'])
- ],
- test_suite='linpy.tests'
+ ]
)