Files
heroku-buildpack-python/vendor/distribute-0.6.32/tests/shlib_test/setup.py
T
2012-12-19 23:29:37 -05:00

11 lines
264 B
Python

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",
)