diff --git a/README.md b/README.md index c86f1c07..0673c54a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Datatable View -This package is used in conjunction with the jQuery plugin [DataTables](http://http://datatables.net/), and supports state-saving detection with [fnSetFilteringDelay](http://datatables.net/plug-ins/api). The package consists of a class-based view, and a small collection of utilities for internal and external use. +This package is used in conjunction with the jQuery plugin [DataTables](http://http://datatables.net/), and supports state-saving detection with [fnSetFilteringDelay](http://datatables.net/plug-ins/api). The package consists of a class-based view, and a small collection of utilities for rendering table data from models. Dependencies: [dateutil](http://labix.org/python-dateutil) library for flexible, fault-tolerant date parsing. diff --git a/datatableview/__init__.py b/datatableview/__init__.py index e69de29b..3be7125f 100644 --- a/datatableview/__init__.py +++ b/datatableview/__init__.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +__name__ = 'datatableview' +__author__ = 'Tim Valenta' +__version_info__ = (0, 5, 0) +__version__ = '.'.join(map(str, __version_info__)) +__date__ = '2013/11/14 2:00:00 PM' +__credits__ = ['Steven Klass', 'Marty Alchin', 'George Vilches', 'Corey Betram'] +__license__ = 'See the file LICENSE.txt for licensing information.' diff --git a/setup.py b/setup.py index e6024723..1c9ff3f3 100644 --- a/setup.py +++ b/setup.py @@ -4,13 +4,13 @@ from setuptools import setup, find_packages setup(name='django-datatable-view', - version='1.0', + version='0.5.0', 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 ' - 'a class-based view, and a small collection of utilities for ' - 'internal and external use.', - author='Tim Vallenta', + 'a class-based view, and a small collection of utilities for rendering' + ' table data from models.', + author='Tim Valenta', author_email='tvalenta@pivotalenergysolutions.com', url='https://github.com/pivotal-energy-solutions/django-datatable-view', license='Apache License (2.0)',