From 0613e685ffedd042107d0516b1dac3879fa68c1b Mon Sep 17 00:00:00 2001 From: Tim Valenta Date: Wed, 20 Nov 2013 13:06:34 -0700 Subject: [PATCH] Bump version again --- datatableview/__init__.py | 2 +- setup.cfg | 2 ++ setup.py | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 setup.cfg diff --git a/datatableview/__init__.py b/datatableview/__init__.py index 5c172b69..03ad1e4b 100644 --- a/datatableview/__init__.py +++ b/datatableview/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- __name__ = 'datatableview' __author__ = 'Tim Valenta' -__version_info__ = (0, 5, 2) +__version_info__ = (0, 5, 3) __version__ = '.'.join(map(str, __version_info__)) __date__ = '2013/11/14 2:00:00 PM' __credits__ = ['Tim Valenta', 'Steven Klass'] diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..b88034e4 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index 27d6dd9b..d67e5e05 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup(name='django-datatable-view', - version='0.5.2', + version='0.5.3', description='This package is used in conjunction with the jQuery plugin ' '(http://http://datatables.net/), and supports state-saving detection' ' with (http://datatables.net/plug-ins/api). The package consists of ' @@ -13,6 +13,7 @@ author='Tim Valenta', author_email='tvalenta@pivotalenergysolutions.com', url='https://github.com/pivotal-energy-solutions/django-datatable-view', + download_url='https://github.com/pivotal-energy-solutions/django-datatable-view/tarball/django-datatable-view-0.5.3', license='Apache License (2.0)', classifiers=[ 'Development Status :: 2 - Pre-Alpha',