-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
36 lines (34 loc) · 1.06 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 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'taiga-contrib-ldap-auth',
version = ":versiontools:taiga_contrib_ldap_auth:",
description = "The Taiga plugin for ldap authentication",
long_description = "",
keywords = 'taiga, ldap, auth, plugin',
author = 'enskylin',
author_email = '[email protected]',
url = 'https://ldap.com/taigaio/taiga-contrib-ldap-auth',
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 :: 4 - Beta',
'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',
]
)