forked from staale/py-xlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 710 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 710 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
from distutils.core import setup
setup(
version="0.1",
name='python-xlsx',
description="Tiny python code for parsing data from Microsoft's Office Open XML Spreadsheet format",
long_description="",
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
author='Staale Undheim',
author_email='github@staale.org',
url='http://github.com/staale/python-xlsx',
packages=[
"xlsx"
],
zip_safe=False,
include_package_data=True,
)