-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.33 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
31
32
33
34
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# from distutils.core import setup
from setuptools import setup, find_packages
setup(
name="django-data-importer",
version="0.1.0-p3",
author="Felipe 'chronos' Prenholato",
author_email="[email protected]",
mainteiner="Felipe 'chronos' Prenholato",
mainteiner_email="[email protected]",
url="http://github.com/chronossc/django-data-importer",
packages = find_packages(exclude=('sampleprojet',)),
description="Generic, easy to use, file reader and importer with validations like Django forms.",
long_description="*data_importer* is a importer tool that allow you write "
"your own importer, with validation for each field and line of imported "
"file. It come with support for CSV, XLS and XLSX files and a lot of "
"examples in tests, logging support, and more.",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=[
"Django >= 1.3.4",
"openpyxl",
"xlrd"
],
zip_safe = False,
)