Files
heroku-buildpack-python/vendor/distribute-0.6.35/tests/shlib_test/setup.py
T
2013-03-07 20:36:03 -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",
)