-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 707 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name = 'changeOffice',
packages = ['changeOffice'],
version = '0.52',
description = 'change msOffice format from xls to xlsx, doc to docx, ppt to pptx',
author = 'Wang Qi',
author_email = 'wangmarkqi@gmail.com',
url = 'https://github.com/wangmarkqi/changeOffice',
download_url = 'https://github.com/wangmarkqi/changeOffice.git',
install_requires=[ 'pywin32>=214'],
keywords = ['excel', 'word', 'ppt','xls to xlsx','doc to docx','ppt to pptx'],
classifiers = [],
)
'''
# 上传source 包
python setup.py sdist build
python setup.py sdist upload
# 上传pre-compiled包
python setup.py bdist_wheel --universal
python setup.py bdist_wheel upload
'''