Select Git revision
syncldapusers.py
Forked from
uffd / postorius ldap membership management
Source project has a limited visibility.
-
Julian authored
Previously, users imported from LDAP had no verified mail address causing many problems with Postorius and Hyperkitty. Also prevents users from changing their username, first name or last name. Fixes #3
Julian authoredPreviously, users imported from LDAP had no verified mail address causing many problems with Postorius and Hyperkitty. Also prevents users from changing their username, first name or last name. Fixes #3
setup.py 881 B
import os
import setuptools
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='ldapserver',
version=os.environ.get('PACKAGE_VERSION', 'local'),
author='Julian Rother',
author_email='python-ldapserver@jrother.eu',
description='Library to implement special-purpose LDAP servers',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://git.cccv.de/uffd/python-ldapserver',
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
],
package_dir={'': '.'},
packages=setuptools.find_packages(where='.'),
python_requires='>=3.7',
)