Add second test project - testing the CIBW_TEST options

This commit is contained in:
Joe Rickerby
2017-03-23 11:20:50 +00:00
parent 747556c417
commit 17a2485d25
4 changed files with 67 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from setuptools import setup, Extension
setup(
name="spam",
ext_modules=[Extension('spam', sources=['spam.c'])],
version="0.1.0",
)