This repository has been archived by the owner on May 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
setup.py
66 lines (60 loc) · 1.75 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright (c) 2008-2013 Simplistix Ltd
# See license.txt for license details.
import os
from setuptools import setup
name = 'xlutils'
base_dir = os.path.dirname(__file__)
package_dir = os.path.join(os.path.dirname(__file__),'xlutils')
setup(
name='xlutils',
version=open(os.path.join(base_dir, name, 'version.txt')).read().strip(),
author='Chris Withers',
author_email='[email protected]',
license='MIT',
description="Utilities for working with Excel files that require both xlrd and xlwt",
long_description=open(os.path.join(base_dir, 'README.rst')).read(),
url='http://www.python-excel.org',
keywords="excel xls xlrd xlwt",
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Office/Business :: Financial :: Spreadsheet',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
packages=['xlutils','xlutils.tests'],
zip_safe=False,
include_package_data=True,
install_requires=[
'xlrd >= 0.7.2',
'xlwt >= 0.7.4',
],
entry_points = {
'console_scripts': [
'margins = xlutils.margins:main',
],
},
extras_require=dict(
test=[
'errorhandler',
'manuel',
'mock',
'nose',
'nose-fixes',
'nose-cov',
'coveralls',
'testfixtures',
'tox',
],
build=[
'setuptools-git',
'wheel',
'twine',
'sphinx',
'pkginfo',
]
)
)