-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.cfg
93 lines (83 loc) · 2.97 KB
/
setup.cfg
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[metadata]
name = ldaptor
version = attr: ldaptor.__version__
description = A Pure-Python Twisted library for LDAP
long_description = file: README.rst
author = Tommi Virtanen
author_email = [email protected]
maintainer = Bret Curtis
maintainer_email = [email protected]
url = https://github.com/twisted/ldaptor
license = MIT
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Framework :: Twisted
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
[options]
python_requires = ~=3.6
install_requires =
passlib
Twisted[tls]>=17.9.0
pyparsing
six >= 1.7
zope.interface
packages = find:
scripts =
[options.extras_require]
docs =
alabaster~=0.7.12
commonmark~=0.9.1
docutils~=0.16.0
mock~=4.0
pillow~=7.2
readthedocs-sphinx-ext~=2.1
recommonmark~=0.6.0
sphinx~=3.2
sphinx-rtd-theme~=0.5.0
[options.entry_points]
console_scripts =
ldaptor-ldap2dhcpconf = ldaptor._scripts.ldap2dhcpconf:console_script
ldaptor-ldap2maradns = ldaptor._scripts.ldap2maradns:console_script
ldaptor-ldap2dnszones = ldaptor._scripts.ldap2dnszones:console_script
ldaptor-search = ldaptor._scripts.search:console_script
ldaptor-namingcontexts = ldaptor._scripts.namingcontexts:console_script
ldaptor-passwd = ldaptor._scripts.passwd:console_script
ldaptor-ldap2passwd = ldaptor._scripts.ldap2passwd:console_script
ldaptor-getfreenumber = ldaptor._scripts.getfreenumber:console_script
ldaptor-ldap2pdns = ldaptor._scripts.ldap2pdns:console_script
ldaptor-find-server = ldaptor._scripts.find_server:console_script
ldaptor-rename = ldaptor._scripts.rename:console_script
ldaptor-fetchschema = ldaptor._scripts.fetchschema:console_script
ldaptor-ldifdiff = ldaptor._scripts.ldifdiff:console_script
ldaptor-ldifpatch = ldaptor._scripts.ldifpatch:console_script
[bdist_wheel]
universal = 1
[zest.releaser]
python-file-with-version = ldaptor/__init__.py
history-file = docs/source/NEWS.rst
tag-format = v{version}
[flake8]
disable-noqa = True
max-line-length = 368
extend-ignore =
E203, # whitespace before : is not PEP8 compliant (& conflicts with black)
E101, # indentation contains mixed spaces and tabs
E265, # block comment should start with '# '
E401, # multiple imports on one line
E402, # module level import not at top of file
E713, # test for membership should be 'not in'
E741, # ambiguous variable name 'l'
E743, # ambiguous function definition 'l'
W191, # indentation contains tabs
W291, # trailing whitespace
W601, # .has_key() is deprecated, use 'in'