-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
url='https://github.com/pivotal-energy-solutions/django-datatable-view', | ||
license='Apache License (2.0)', | ||
|