summaryrefslogtreecommitdiff
path: root/setup.py
blob: 8b9b6fd3850bf128df29b35f39e968b83ca3f9df (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
# Copyright (C) 2010 Linaro Limited
#
# Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
#
# This file is part of django-testscenarios.
#
# django-testscenarios is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# as published by the Free Software Foundation
#
# django-testscenarios 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 Lesser General Public License
# along with django-testscenarios.  If not, see <http://www.gnu.org/licenses/>.

from setuptools import setup


setup(
    name='django-testscenarios',
    version="0.7.3",
    author="Linaro Limited",
    author_email="lava-team@linaro.org",
    description="Test scenarios for Django",
    url='https://git.linaro.org/lava/django-testscenarios.git',
    test_suite='django_testscenarios.test_project.tests.run_tests',
    license='LGPLv3',
    keywords=['django', 'testing', 'scenarios'],
    classifiers=[
        "Development Status :: 4 - Beta",
        'Environment :: Web Environment',
        'Framework :: Django',
        'Intended Audience :: Developers',
        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 2.7",
        "Topic :: Software Development :: Testing",
    ],
    zip_safe=True,
    packages=[
        'django_testscenarios',
    ],
    install_requires=[
        'django >= 1.6',
        'django-testproject >= 0.1.1',
        'testtools >= 0.9.2',
        'testscenarios >= 0.1',
    ],
)