forked from shymonk/django-datatable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.05 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.05 KB
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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
setup(
name='django-datatable',
version='0.2.1',
author='shymonk',
author_email='hellojohn201@gmail.com',
url='https://github.com/shymonk/django-datatable',
description='A simple Django app to origanize data in tabular form.',
long_description=open('README.rst').read(),
packages=find_packages(exclude=['test*', 'example*']),
include_package_data=True,
zip_safe=False,
install_requires=["django>=1.5"],
license='MIT License',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
)