-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (26 loc) · 876 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (26 loc) · 876 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
:copyright: Copyright 2012 by Łukasz Mierzwa
:contact: l.mierzwa@gmail.com
"""
from setuptools import setup
setup(
name='django-batchimport',
version='0.1.3-cbv',
description='Django XLS batch processing',
long_description="pistache's fork of Łukasz Mierzwa's project. Django template tags used to generate breadcrumbs html using twitter bootstrap css classes",
author='Hugo Geoffroy',
author_email='batchimport@pstch.net',
install_requires = ['xlrd==0.9.3'],
packages = ['batchimport'],
package_data = {
'batchimport': ['templates/batchimport/*.html'],
},
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms=['any'],
)