Add a single test project and set to build on travis/appveyor

This commit is contained in:
Joe Rickerby
2017-03-20 23:54:29 +00:00
parent 095a857dcf
commit 309a2adcda
6 changed files with 91 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",
)