forked from SteveEwell/python-ldap-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (54 loc) · 1.92 KB
/
Copy pathsetup.py
File metadata and controls
66 lines (54 loc) · 1.92 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""
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(
name='ldap-filter',
version='0.2.2',
description='A Python utility library for working with Lightweight Directory Access Protocol (LDAP) filters.',
long_description=__doc__,
url='https://github.com/SteveEwell/python-ldap-filter',
author='Stephen Ewell',
author_email='steve@ewell.io',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='ldap filter rfc4515 utility development',
packages=['ldap_filter'],
install_requires=[],
extras_require={
'test': [
'pytest>=3.0.2',
'coverage>=4.2'
],
},
python_requires='!=2.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*'
)