mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
715ab8b96a
So seamless.
11 lines
264 B
Python
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",
|
|
)
|