summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django_testproject/__init__.py23
-rwxr-xr-xsetup.py5
2 files changed, 1 insertions, 27 deletions
diff --git a/django_testproject/__init__.py b/django_testproject/__init__.py
index 80b4c64..e69de29 100644
--- a/django_testproject/__init__.py
+++ b/django_testproject/__init__.py
@@ -1,23 +0,0 @@
-# Copyright (C) 2010, 2011 Linaro Limited
-#
-# Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
-#
-# This file is part of django-testproject.
-#
-# django-testproject 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-testproject 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-testproject. If not, see <http://www.gnu.org/licenses/>.
-
-"""
-Universal project for running unit tests of Django applications
-"""
-
-__version__ = (0, 1, 1, "final", 0)
diff --git a/setup.py b/setup.py
index f815832..89bb23b 100755
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ from setuptools import setup
setup(
name='django-testproject',
- version=":versiontools:django_testproject:__version__",
+ version="0.1.2",
author="Linaro Limited",
author_email="lava-team@linaro.org",
description="Universal project for running unit tests of Django applications",
@@ -47,8 +47,5 @@ setup(
install_requires=[
'django >= 1.0',
],
- setup_requires = [
- 'versiontools >= 1.3.1',
- ],
include_package_data=True,
)