mirror of
https://github.com/jdupouy/radicale3-auth-ldap.git
synced 2024-10-27 19:14:00 +00:00
13 lines
310 B
Python
13 lines
310 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name="radicale-auth-ldap",
|
||
|
version="0.1",
|
||
|
description="LDAP Authentication Plugin for Radicale 2",
|
||
|
author="Raoul Thill",
|
||
|
license="GNU GPL v3",
|
||
|
install_requires=["radicale>=2.0", "ldap3"],
|
||
|
packages=["radicale_auth_ldap"])
|