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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#!/usr/bin/env python
# vim:fileencoding=utf8:et:ts=4:sts=4:sw=4:ft=python
from setuptools import setup, find_packages
import okupy
setup(
name='okupy',
version=okupy.__version__,
license='AGPLv3',
author='identity.gentoo.org development team',
author_email='identity@gentoo.org',
url='http://github.com/gentoo/identity.gentoo.org',
description='Django LDAP webUI and OpenID provider for the Gentoo Linux project',
long_description=open('README.md').read(),
keywords='django, ldap, gentoo',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Students',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
],
dependency_links=[
'https://bitbucket.org/psagers/mockldap/get/default.tar.gz#egg=mockldap',
'https://github.com/tampakrap/django-ldapdb/archive/okupy.tar.gz#egg=django-ldapdb',
],
install_requires=[
'django>=1.5',
'django-auth-ldap>=1.1.4',
'django-compressor>=1.3',
'django-ldapdb',
'django-otp>=0.1.7',
'passlib>=1.6.1',
'pycrypto>=2.6',
'pyopenssl>=0.13',
'python-ldap>=2.4.10',
'python-memcached>=1.53',
'python-openid>=2.2.5',
'qrcode>=3.0',
],
setup_requires=[
'setuptools>=0.6c11',
],
tests_require=[
'django-discover-runner>=1.0',
'mockldap',
'mock>=1.0.1',
],
extras_require={
'mysql': ['mysql-python>=1.2.3'],
},
)
|