forked from django-import-export/django-import-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 913 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
from setuptools import setup, find_packages
VERSION = __import__("import_export").__version__
CLASSIFIERS = [
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development',
]
install_requires = [
'tablib',
'Django>=1.4.2',
'diff-match-patch',
]
setup(
name="django-import-export",
description="Django application and library for importing and exporting"
"data with included admin integration.",
version=VERSION,
author="Informatika Mihelac",
author_email="bmihelac@mihelac.org",
url="https://github.com/bmihelac/django-import-export",
packages=find_packages(exclude=["tests"]),
package_data={'import_export': ['templates/admin/import_export/*.html']},
install_requires=install_requires,
classifiers = CLASSIFIERS,
)