summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/setup.py
blob: b04f3b09f144077eccd6311e67769a82e31aeb66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python
from distutils.core import setup
from distutils.extension import Extension

setup(name="ldb",
      version="1.0",
      url="http://ldb.samba.org/",
      author="LDB Developers",
      author_email="ldb@samba.org",
      license="LGPLv3",
      keywords=["ldap","ldb","db","ldif"],
      py_modules=["ldb"],
      ext_modules=[Extension('_ldb', ['ldb_wrap.c'], include_dirs=['include'],
                             library_dirs=["lib"], libraries=['ldb'])],
      )