Skip to content
...@@ -6,33 +6,35 @@ LDAP authentication extension for Flask ...@@ -6,33 +6,35 @@ LDAP authentication extension for Flask
""" """
from setuptools import setup from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup( setup(
name='Flask-SimpleLDAP', name="Flask-SimpleLDAP",
version='1.4.0', version="1.4.0",
url='https://github.com/admiralobvious/flask-simpleldap', url="https://github.com/alexferl/flask-simpleldap",
license='MIT', license="MIT",
author='Alexandre Ferland', author="Alexandre Ferland",
author_email='aferlandqc@gmail.com', author_email="me@alexferl.com",
description='LDAP authentication extension for Flask', description="LDAP authentication extension for Flask",
long_description=__doc__, long_description=long_description,
packages=['flask_simpleldap'], long_description_content_type="text/markdown",
packages=["flask_simpleldap"],
zip_safe=False, zip_safe=False,
include_package_data=True, include_package_data=True,
platforms='any', platforms="any",
install_requires=[ install_requires=["Flask>=0.12.4", "python-ldap>=3.0.0"],
'Flask>=0.12.4',
'python-ldap>=3.0.0'
],
classifiers=[ classifiers=[
'Environment :: Web Environment', "Environment :: Web Environment",
'Intended Audience :: Developers', "Intended Audience :: Developers",
'License :: OSI Approved :: MIT License', "License :: OSI Approved :: MIT License",
'Operating System :: OS Independent', "Operating System :: OS Independent",
'Programming Language :: Python :: 3.5', "Programming Language :: Python :: 3.7",
'Programming Language :: Python :: 3.6', "Programming Language :: Python :: 3.8",
'Programming Language :: Python :: 3.7', "Programming Language :: Python :: 3.9",
'Topic :: Software Development :: Libraries :: Python Modules' "Topic :: Software Development :: Libraries :: Python Modules",
] ],
) )