~linaro-validation/django-restricted-resource/trunk

2.1.2 by Zygmunt Krynicki
Integrate test infrastructure with setup.py
1
#!/usr/bin/env python
2
# Copyright (C) 2010 Linaro Limited
3
#
4
# Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
5
#
6
# This file is part of django-restricted-resource.
7
#
8
# django-restricted-resource is free software: you can redistribute it and/or modify
9
# it under the terms of the GNU Lesser General Public License version 3
10
# as published by the Free Software Foundation
11
#
12
# django-restricted-resource is distributed in the hope that it will be useful,
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
# GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU Lesser General Public License
18
# along with django-restricted-resource.  If not, see <http://www.gnu.org/licenses/>.
19
20
from setuptools import setup
21
22
setup(
23
    name = 'django-restricted-resource',
14 by Zygmunt Krynicki
Release micro upgrade to support django-testscenarios 0.5
24
    version = "0.2.2",
2.1.2 by Zygmunt Krynicki
Integrate test infrastructure with setup.py
25
    author = "Zygmunt Krynicki",
26
    author_email = "zygmunt.krynicki@linaro.org",
27
    description = "Base model for Django that adds simple and efficient ownership and access control.",
28
    url = 'https://launchpad.net/django-restricted-resource',
29
    test_suite = 'test_project.tests.run_tests',
30
    license='LGPLv3',
31
    keywords = ['django', 'ownership', 'models'],
32
    classifiers = [
33
        "Development Status :: 3 - Alpha",
34
        'Environment :: Web Environment',
35
        'Framework :: Django',
36
        'Intended Audience :: Developers',
37
        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
38
        "Operating System :: OS Independent",
39
        "Programming Language :: Python :: 2.6",
40
    ],
41
    zip_safe = True,
42
    packages = ['django_restricted_resource'],
43
    # dependencies
44
    install_requires=[
45
        'django >= 1.0',
46
    ],
6 by Zygmunt Krynicki
Fix tests_require and dependency_links.
47
    tests_require=[
14 by Zygmunt Krynicki
Release micro upgrade to support django-testscenarios 0.5
48
        'django-testscenarios >= 0.5',
6 by Zygmunt Krynicki
Fix tests_require and dependency_links.
49
    ],
2.1.2 by Zygmunt Krynicki
Integrate test infrastructure with setup.py
50
)