blob: 122de77cd830b4dab972a7c6d4d242de5644380e (
plain)
1
2
3
4
5
6
7
8
9
10
|
from setuptools import setup, Extension, SharedLibrary
setup(
name="shlib_test",
ext_modules = [
SharedLibrary("hellolib", ["hellolib.c"]),
Extension("hello", ["hello.pyx"], libraries=["hellolib"])
],
test_suite="test_hello.HelloWorldTest",
)
|