1
0
Fork 0
hscloud/hswaw/machines/customs.hackerspace.pl/openvpn-auth/setup.py

18 lines
414 B
Python

from setuptools import setup
setup(
name="openvpn_auth",
classifiers=[
"License :: OSI Approved :: zlib/libpng License",
"Programming Language :: Python :: 3.7",
],
packages=["openvpn_auth"],
install_requires=["ldap3"],
python_requires=">=3.7,",
entry_points={
"console_scripts": [
"openvpn-auth-member=openvpn_auth:member_auth",
]
},
)