forked from pivotal-energy-solutions/django-datatable-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.36 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
# -*- coding: utf-8 -*-
"""setup.py: Django django-datatables-view"""
from setuptools import setup, find_packages
setup(name='django-datatable-view',
version='1.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',
author_email='[email protected]',
url='https://github.com/pivotal-energy-solutions/django-datatable-view',
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,
requires=['django (>=1.2)'],
)