1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# -*- coding: utf-8 -*-
'''
Flask-LDAPConn
--------------
Flask extension providing ldap3 connection object and ORM
to accessing LDAP servers.
'''
from setuptools import setup
setup(
name='Flask-LDAPConn',
version='0.10.2',
url='http://github.com/rroemhild/flask-ldapconn',
license='BSD',
author='Rafael Römhild',
author_email='rafael@roemhild.de',
keywords='flask ldap ldap3 orm',
description='Pure python, LDAP connection and ORM for Flask Applications',
long_description=open('README.rst').read(),
packages=[
'flask_ldapconn'
],
platforms='any',
install_requires=[
'Flask>=0.12',
'ldap3>=2.3',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Flask',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)
|