forked from pivotal-energy-solutions/django-datatable-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.52 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
"""setup.py: Django django-datatables-view"""
from setuptools import setup, find_packages
setup(name='django-datatable-view',
version='0.8.1',
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 rendering'
' table data from models.',
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.8.1',
license='Apache License (2.0)',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
],
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={'datatableview': ['static/js/*.js', 'templates/datatableview/*.html']},
include_package_data=True,
install_requires=['django>=1.2', 'python-dateutil>=2.1'],
)