Free a buffer on an error path
[pytipc.git] / setup.py
bloba4e4f2a9c691201ad6f39b0138d35a98a94de41d
1 #!/usr/bin/env python
3 from distutils.core import setup, Extension
5 tipc_ll = Extension("tipc_ll", sources = ['tipc_ll.c'])
7 setup(
8 name = 'tipc',
9 description = "TIPC bindings",
10 author = "Alberto Bertogli",
11 author_email = "albertito@gmail.com",
12 url = "http://auriga.wearlab.de/~alb/pytipc",
13 py_modules = ['tipc'],
14 ext_modules = [tipc_ll]