aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 23e409577f642f4998582038dce71bdd36cee93e (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
54
55
56
57
#!/usr/bin/env python
#
# Copyright (C) 2015 Linaro Limited
#
# Author: Senthil Kumaran S <senthil.kumaran@linaro.org>
#
# This file is part of Linaro LAVA LDAP.
#
# Linaro LAVA LDAP is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License version 3
# as published by the Free Software Foundation
#
# Linaro LAVA LDAP is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Linaro LAVA LDAP.  If not, see <http://www.gnu.org/licenses/>.


from setuptools import setup, find_packages


setup(
    name='linaro_lava_ldap',
    version=":versiontools:linaro_lava_ldap:__version__",
    author="Senthil Kumaran S",
    author_email="lava-team@linaro.org",
    packages=find_packages(),
    license="AGPL",
    description="Linaro LAVA LDAP",
    long_description="""
    Linaro login service customizations for LAVA server
    """,
    url='http://www.linaro.org/engineering/engineering-groups/validation',
    classifiers=[
        "Development Status :: 0.1",
        "Intended Audience :: Administrators",
        "License :: OSI Approved :: GNU Affero General Public License v3",
        ("License :: OSI Approved :: GNU Library or Lesser General Public"
         " License (LGPL)"),
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",
        "Topic :: Software Development :: Testing",
    ],
    install_requires=[
        'django >= 1.6.1',
        'django-auth-ldap >= 1.2',
        'django-restricted-resource >= 0.2.7',
        'django-tables2 >= 0.13.0',
        'docutils >= 0.6',
        'versiontools >= 1.8',
        'psycopg2',
    ],
    zip_safe=True)