-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.37 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.37 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
VERSION = __import__('pyheaderfile').__version__
setup(
name = 'pyheaderfile',
packages = ['pyheaderfile'],
version = VERSION,
description = 'Enable handle of csv, xls and xlsx files getting '
'column header',
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst'),
'r').read(),
author = 'Diogo Munaro Vieira, Isvaldo Fernandes de Souza, '
'Thiago Pereira Fernandes',
author_email = 'diogo.mvieira@gmail.com, isvaldo.fernandes@gmail.com, '
'thiago.fernandes210@gmail.com',
url = 'https://github.com/kappius/pyheaderfile',
download_url = 'https://github.com/kappius/pyheaderfile/archive/%s.tar.gz' % VERSION,
keywords = ['xls', 'excel', 'spreadsheet', 'workbook', 'xlsx', 'csv', 'txt'],
license = 'Apache',
include_package_data=True,
install_requires=['xlrd', 'xlwt', 'openpyxl', 'unicodecsv'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Database',
'Topic :: Office/Business',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)