Until the new ldb changes land, make ldb_wait set the error string.
[jelmer/samba4-debian.git] / source / lib / ldb / setup.py
1 #!/usr/bin/python
2 from distutils.core import setup
3 from distutils.extension import Extension
4
5 setup(name="ldb",
6       version="1.0",
7       url="http://ldb.samba.org/",
8       author="LDB Developers",
9       author_email="ldb@samba.org",
10       license="LGPLv3",
11       keywords=["ldap","ldb","db","ldif"],
12       py_modules=["ldb"],
13       ext_modules=[Extension('_ldb', ['ldb_wrap.c'], include_dirs=['include'],
14                              library_dirs=["lib"], libraries=['ldb'])],
15       )