add tests

This commit is contained in:
Grzegorz Bokota
2019-12-05 21:13:11 +01:00
parent c1df977e11
commit 5941ba7daf
5 changed files with 76 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import os
from setuptools import setup, Extension
setup(
ext_modules=[Extension('spam.spam', sources=['spam/spam.c'])],
)