summaryrefslogtreecommitdiff
path: root/tests/shlib_test/setup.py
blob: b0c93996f3265bdef0eb5b746de6ca1e96052a90 (plain)
1
2
3
4
5
6
7
8
9
10
from setuptools import setup, Extension, Library

setup(
    name="shlib_test",
    ext_modules = [
        Library("hellolib", ["hellolib.c"]),
        Extension("hello", ["hello.pyx"], libraries=["hellolib"])
    ],
    test_suite="test_hello.HelloWorldTest",
)