summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZygmunt Krynicki <zygmunt.krynicki@linaro.org>2011-06-23 11:59:51 +0200
committerZygmunt Krynicki <zygmunt.krynicki@linaro.org>2011-06-23 11:59:51 +0200
commit121c73c6a050ce38a3956ec3ba6aebd167f7e544 (patch)
tree17b6e5004da62cbbabbea34aa9a9765a07e8f604
parent92308a6cf634b8f31d84bd75251c60b39d68eb91 (diff)
Bump version to 0.2.6, use versiontoolsrelease-0.2.6
-rw-r--r--django_restricted_resource/__init__.py1
-rwxr-xr-xsetup.py35
2 files changed, 18 insertions, 18 deletions
diff --git a/django_restricted_resource/__init__.py b/django_restricted_resource/__init__.py
index 735725b..4544d75 100644
--- a/django_restricted_resource/__init__.py
+++ b/django_restricted_resource/__init__.py
@@ -16,3 +16,4 @@
# You should have received a copy of the GNU Lesser General Public License
# along with django-restricted-resource. If not, see <http://www.gnu.org/licenses/>.
+__version__ = (0, 2, 6, "final", 0)
diff --git a/setup.py b/setup.py
index 126bd55..a8ab46c 100755
--- a/setup.py
+++ b/setup.py
@@ -19,32 +19,31 @@
from setuptools import setup
+
setup(
- name = 'django-restricted-resource',
- version = "0.2.5",
- author = "Zygmunt Krynicki",
- author_email = "zygmunt.krynicki@linaro.org",
- description = "Base model for Django that adds simple and efficient ownership and access control.",
- url = 'https://launchpad.net/django-restricted-resource',
- test_suite = 'django_restricted_resource.test_project.tests.run_tests',
+ name='django-restricted-resource',
+ version=":versiontools:django_restricted_resource:__version__",
+ author="Zygmunt Krynicki",
+ author_email="zygmunt.krynicki@linaro.org",
+ description="Base model for Django that adds simple and efficient ownership and access control.",
+ url='https://launchpad.net/django-restricted-resource',
+ test_suite='django_restricted_resource.test_project.tests.run_tests',
license='LGPLv3',
- keywords = ['django', 'ownership', 'models'],
- classifiers = [
- "Development Status :: 3 - Alpha",
+ keywords=['django', 'ownership', 'models'],
+ 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.6",
+ "Programming Language :: Python :: 2.7",
],
- zip_safe = True,
- packages = ['django_restricted_resource'],
+ zip_safe=True,
+ packages=['django_restricted_resource'],
# dependencies
- install_requires=[
- 'django >= 1.0',
- ],
- tests_require=[
- 'django-testscenarios >= 0.6',
- ],
+ install_requires=['django >= 1.0'],
+ tests_require=['django-testscenarios >= 0.7.1'],
+ setup_requires=['versiontools >= 1.3.1'],
)