File: natkit-setup.py

package info (click to toggle)
python-libtrace 1.6-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 2,160 kB
  • sloc: ansic: 6,886; python: 3,187; sh: 79; makefile: 70
file content (22 lines) | stat: -rw-r--r-- 606 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Plt-setup.py:  Build and install the extension

from distutils.core import setup, Extension

setup(
    name='natkit',
    version='1.0',
    description="python-libtrace, Net Analysis ToolKIT",
    author='Nevil Brownlee',
    author_email='n.brownlee@auckland.ac.nz',
    url='https://www.cs.auckland.ac.nz/~nevil/python-libtrace/',

    ext_modules = [
        Extension(  "natkit", 
            sources = [
                "natkit.c" ],
            libraries = ['trace'],
            library_dirs = ['/usr/local/lib'],
            include_dirs = ['/usr/local/include', '../include']
       )
    ]
)