forked from LurkingFrog/django-dataTables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 735 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
24
25
26
27
28
29
# -*- coding: utf-8 -*-
import os
import codecs
from setuptools import setup, find_packages
def read(fname):
full_path = os.path.join(os.path.abspath(__file__), fname)
if os.path.exists(full_path):
return unicode(codecs.open(full_path).read())
setup(
name="django-datatables",
version="0.1",
packages=find_packages(),
install_requires=[
'django',
],
include_package_data=True,
zip_safe=False,
author='Dave Fogelson',
author_email='[email protected]',
description='jQuery datatables support for Django',
keywords='django jquery datatables',
url='https://github.com/LurkingFrog/django-dataTables',
long_description=read('README.rst'),
)
# End of file.