Add test for building a package at a subpath within a project

This commit is contained in:
Joe Rickerby
2020-04-10 17:42:39 +01:00
parent 83b39bcda2
commit f4e911028c
6 changed files with 87 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
from setuptools import Extension, setup
setup(
name="spam",
ext_modules=[Extension('spam', sources=['spam.c'])],
version="0.1.0",
)