File: setup.py

package info (click to toggle)
ncap 1.9.2-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,704 kB
  • sloc: sh: 10,135; ansic: 5,829; perl: 68; makefile: 42; python: 33
file content (14 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup
from distutils.extension import Extension
from Pyrex.Distutils import build_ext
setup(
  name = "ncap",
  ext_modules=[ 
    Extension("ncap", ["ncap.pyx", "wrap.c"],
              libraries = ["ncap"],
              library_dirs = ["../.libs"],
              include_dirs = [".."]
              )
    ],
  cmdclass = {'build_ext': build_ext}
)