You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
321 B
13 lines
321 B
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="radicale3-auth-ldap",
|
|
version="3.0",
|
|
description="LDAP Authentication Plugin for Radicale 3",
|
|
author="Raoul Thill",
|
|
license="GNU GPL v3",
|
|
install_requires=["radicale >= 3.0", "ldap3 >= 2.3"],
|
|
packages=["radicale3_auth_ldap"])
|