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", ] }, )