blob: ec50fe788d9761e0c5d503ab3618ec7249ee9eac [file] [log] [blame]
Piotr Dobrowolskia01905a2021-10-16 18:22:46 +02001from setuptools import setup
2
3setup(
4 name="openvpn_auth",
5 classifiers=[
6 "License :: OSI Approved :: zlib/libpng License",
7 "Programming Language :: Python :: 3.7",
8 ],
9 packages=["openvpn_auth"],
10 install_requires=["ldap3"],
11 python_requires=">=3.7,",
12 entry_points={
13 "console_scripts": [
14 "openvpn-auth-member=openvpn_auth:member_auth",
15 ]
16 },
17)