-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
30 lines (29 loc) · 1.01 KB
/
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
from setuptools import setup, find_packages
setup(
name = "django-simple-import",
version = "2.1.0",
author = "David Burke",
author_email = "[email protected]",
description = ("A Django import tool easy enough your users could use it"),
license = "BSD",
keywords = "django import",
url = "https://gitlab.com/burke-software/django-simple-import",
packages=find_packages(exclude=("simple_import/static","simple_import_demo")),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
"License :: OSI Approved :: BSD License",
],
install_requires=['django'],
extras_require = {
'xlsx': ["openpyxl"],
'ods': ["odfpy"],
'xls': ["xlrd"],
},
)