-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
51 lines (47 loc) · 1.62 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
from setuptools import setup, find_packages
from io import open
import os
root_dir = os.path.dirname(__file__)
fpath = os.path.join(root_dir, "README.md")
readme = open(fpath, "r", encoding="utf-8").read()
setup(
name="excel2xx",
version="0.11.1",
packages=find_packages(),
url="https://github.com/cupen/excel2xx",
license="WTFPL",
author="cupen",
author_email="xcupen@gmail.com",
description="Extract data from excel file, and export to json, msgpack, or any code(mako template).",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=[
"xlrd == 1.2.*",
"docopt >= 0.6.0",
"mako == 1.2.*",
"msgpack-python >= 0.4.8",
"colorama >= 0.4.6",
],
entry_points={
"console_scripts": [
"excel2xx=excel2xx.main:main_docopt",
],
},
python_requires=">=3.6,!=3.6.1",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)