aboutsummaryrefslogtreecommitdiff
blob: 01ee6ef8333326a79966b20c325d27eafe7d32fb (plain)
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
#!/usr/bin/env python

from setuptools import setup, find_packages
import okupy
import os

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(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
    keywords='django, ldap, gentoo',
    packages=find_packages(),
    data_files=[('', ['LICENSE', 'manage.py', 'README.md'])],
    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=[
        # use tampakrap's fork, contains additional patches needed for the tests
        'https://bitbucket.org/tampakrap/django-auth-ldap/get/1.1.4.0.1.tar.gz#egg=django-auth-ldap-1.1.4.0.1',
    ],
    install_requires=[
        'django>=1.5',
        'django-auth-ldap>=1.1.4',
        'django-compressor>=1.3',
        'edpwd>=0.0.1',
        'passlib>=1.6.1',
        'python-ldap>=2.4.10',
    ],
    setup_requires=[
        'setuptools>=0.6c11',
    ],
    tests_require=[
        'mock>=1.0.1',
    ],
    extras_require={
        'mysql': ['mysql-python>=1.2.3'],
    },
)