-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathsetup.py
33 lines (28 loc) · 939 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
33
#!/usr/bin/env python
from distutils.core import setup
description = "A wrapper around Kenneth Reitz' tablib to work with Django " \
"models."
VERSION = '3.2'
setup(
name='django-tablib',
version=VERSION,
author='Joshua Ourisman',
author_email='[email protected]',
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/*', 'admin/*'], },
install_requires=['tablib', 'six'],
)