=== modified file 'setup.py'
@@ -1,5 +1,4 @@
#!/usr/bin/env python
-#
# Copyright (C) 2010 Linaro Limited
#
# Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
@@ -7,7 +6,7 @@
# This file is part of Launch Control.
#
# Launch Control is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
+# it under the terms of the GNU Affero General Public License version 3
# as published by the Free Software Foundation
#
# Launch Control is distributed in the hope that it will be useful,
@@ -15,7 +14,7 @@
# 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
+# You should have received a copy of the GNU Affero General Public License
# along with Launch Control. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
@@ -33,7 +32,7 @@
Validation Dashboard is a repository for test results.
""",
url='https://launchpad.net/lava-dashboard',
- #test_suite='launch_control.tests.test_suite',
+ #test_suite='dashboard_app.tests.test_suite',
entry_points="""
[lava_server.extensions]
dashboard=dashboard_app.extension:DashboardExtension
@@ -50,21 +49,22 @@
],
install_requires=[
'Django >= 1.2',
- 'linaro-django-pagination >= 2.0',
- 'django-restricted-resource >= 0.2.5',
+ 'django-restricted-resource >= 0.2.6',
+ 'django-staticfiles == 0.3.4',
'docutils >= 0.6',
- 'lava-server',
+ 'lava-server >= 0.1',
'linaro-dashboard-bundle >= 1.4',
- 'linaro-json >= 2.0',
+ 'linaro-django-pagination >= 2.0.2',
+ 'linaro-json >= 2.0.1', # TODO: use json-schema-validator
'pygments >= 1.2',
- 'south >= 0.7',
- 'versiontools >= 1.1',
+ 'south >= 0.7.3',
+ 'versiontools >= 1.3.1',
],
setup_requires=[
'versiontools >= 1.3.1',
],
tests_require=[
- 'django-testscenarios >= 0.6',
+ 'django-testscenarios >= 0.7.1',
'mocker >= 1.0',
],
zip_safe=False,