-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
executable file
·38 lines (36 loc) · 1.24 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
#!/usr/bin/python
from setuptools import setup
setup(
name="PyExcelerate",
version="0.12.0",
author="Kevin Wang, Kevin Zhang",
author_email="[email protected]",
maintainer="Kevin Zhang",
maintainer_email="[email protected]",
url="https://github.com/kz26/PyExcelerate",
description="Accelerated Excel XLSX Writing Library for Python 2/3",
long_description=open("README.rst").read(),
install_requires=["Jinja2", "six>=1.4.0"],
packages=["pyexcelerate"],
package_data={
"pyexcelerate": [
"templates/*.xml",
"templates/_rels/.rels",
"templates/docProps/*.xml",
"templates/xl/*.xml",
"templates/xl/_rels/*",
"templates/xl/worksheets/*.xml",
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)