-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
36 lines (34 loc) · 1.33 KB
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='taiga-contrib-ldap-auth-ext',
version=":versiontools:taiga_contrib_ldap_auth_ext:",
description="The (extended) Taiga plugin for ldap authentication",
long_description="Extended Taiga.io plugin for LDAP authentication. This is a fork of ensky/taiga-contrib-ldap-auth which also retrieves the various contributions and other forks into one.",
download_url='https://github.com/Monogramm/taiga-contrib-ldap-auth-ext/archive/v0.5.0.tar.gz',
keywords='taiga, ldap, auth, plugin',
author='Monogramm',
author_email='[email protected]',
url='https://github.com/Monogramm/taiga-contrib-ldap-auth-ext',
license='AGPL',
include_package_data=True,
packages=find_packages(),
install_requires=[
'django >= 1.7',
'ldap3 >= 0.9.8.4'
],
setup_requires=[
'versiontools >= 1.8',
],
classifiers=[
"Programming Language :: Python",
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)