File: setup.py

package info (click to toggle)
zope2.13 2.13.22-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 38,644 kB
  • ctags: 38,805
  • sloc: python: 196,395; xml: 90,515; ansic: 24,121; sh: 916; makefile: 333; perl: 37
file content (10 lines) | stat: -rwxr-xr-x 264 bytes parent folder | download | duplicates (6)
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",
)