Skip to content

Commit

Permalink
Add PyPI required information
Browse files Browse the repository at this point in the history
  • Loading branch information
tiliv committed Nov 14, 2013
1 parent 1f7e12e commit 887f4b8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
8 changes: 8 additions & 0 deletions datatableview/__init__.py
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.'
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)',
Expand Down

0 comments on commit 887f4b8

Please sign in to comment.