forked from joshourisman/django-tablib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 922 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
30
31
32
#!/usr/bin/env python
from distutils.core import setup
description = "A wrapper around Kenneth Reitz' tablib to work with Django models."
VERSION = '3.0'
setup(
name='django-tablib',
version=VERSION,
author='Joshua Ourisman',
author_email='josh@joshourisman.com',
url='https://github.com/joshourisman/django-tablib',
description=description,
long_description=description,
license='MIT',
platforms=['any'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=['django_tablib',],
package_data = {'django_tablib': ['templates/tablib/*',],},
install_requires=['tablib',],
)