-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.08 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 1.08 KB
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
#!/usr/bin/env python3
from setuptools import setup
from ppt2fig import __version__
setup(name='ppt2fig',
version=__version__,
description='Export PowerPoint pages to PDF with Windows GUIs and a cross-platform CLI / 导出 PowerPoint 页面为 PDF,支持 Windows GUI 和跨平台 CLI。',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Elliot Zheng',
author_email='admin@hypercube.top',
url='https://github.com/elliottzheng/ppt2fig',
packages=['ppt2fig'],
entry_points={
'console_scripts': [
'ppt2fig = ppt2fig.main:main',
'ppt2fig-file-gui = ppt2fig.file_gui:main',
]
},
install_requires=[
'comtypes; platform_system=="Windows"',
'pdfCropMargins',
'pypdf',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6'
)