-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 787 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 787 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
"""
Setup script for building xltable package.
"""
from setuptools import find_packages, setup
setup_params = dict(
name="xltable",
description="A Python package to ease writing tables of data to Excel",
long_description=open("README.rst").read(),
packages=find_packages(),
test_suite="nose.collector",
version="0.2.13",
install_requires=["pandas>=0.12.0"],
extras_require={
"xlsxwriter": ["xlsxwriter>=0.7.2"],
"pywin32": ["pywin32>=219"],
"xlwt": ["xlwt>=0.7.5"]
},
tests_require=["nose>=1.2.1"],
author="Tony Roberts",
author_email="tony@pyxll.com",
url="https://github.com/fkarb/xltable",
classifiers=["License :: OSI Approved :: MIT License"],
)
if __name__ == '__main__':
setup(**setup_params)