-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (23 loc) · 827 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (23 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""
python-ldap-filter
==================
**Build and generate LDAP filters**
A Python utility library for working with Lightweight Directory Access
Protocol (LDAP) filters.
This project is a port of the
`node-ldap-filters <https://github.com/tapmodo/node-ldap-filters>`__ and
implements many of the same APIs. The filters produced by the library
are based on `RFC 4515 <https://tools.ietf.org/html/rfc4515>`__.
Links
-----
`GitHub <https://github.com/SteveEwell/python-ldap-filter>`_
"""
import os
import sys
from setuptools import setup
if sys.version_info[0] <= 2 or (sys.version_info[0] == 3 and sys.version_info < (3, 4)):
raise RuntimeError('This software requires Python version 3.4 or higher.')
if os.path.isfile("MANIFEST"):
os.unlink("MANIFEST")
rootdir = os.path.dirname(__file__) or "."
setup()