-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
23 lines (21 loc) · 832 Bytes
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='django-datatables-ajax',
version='1.0.0',
description=('Lightweight Django class for a full Datatables server processing implementation'),
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: POSIX :: Linux'
],
url='https://github.com/peppelinux/django-datatables-ajax',
author='Giuseppe De Marco',
author_email='giuseppe.demarco@unical.it',
license='BSD',
packages=['datatables_ajax'],
install_requires=['django'],
)