File: ipp-setup.py

package info (click to toggle)
python-libtrace 1.6%2Bgit20161027-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,124 kB
  • ctags: 1,357
  • sloc: ansic: 6,890; python: 3,228; makefile: 70; sh: 49
file content (18 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# IPprefix-setup.py:  Build and install the ext1 extension

from distutils.core import setup, Extension

setup(
    name='ipp',
    version='1.0',
    description='IPprefix, a library for IP addresses and widths',
    author='Nevil Brownlee',
    author_email='n.brownlee@auckland.ac.nz',
    url='https://www.cs.auckland.ac.nz/~nevil/python-libtrace/',

    ext_modules = [
        Extension("ipp", ["ippmodule.c"],
        include_dirs = ['../include']
        )
       ],
    )