summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/setup.py
blob: 47326e2faeca670328cc3f1c71cb76670888f677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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"],
      ext_modules=[Extension('_ldb', ['ldb.i'], include_dirs=['include'],
                             library_dirs=["lib"], libraries=['ldb','ldap'])],
      )