Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
20 lines (18 loc) · 1023 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
fromsetuptools.dependsimportget_module_constant
fromsetuptoolsimportsetup
setup(
name='convertapi',
packages= ['convertapi'],
version=get_module_constant('convertapi', '__version__'),
description='Convert API Python Client',
long_description='Convert various files like MS Word, Excel, PowerPoint, Images to PDF and Images. Create PDF and Images from url and raw HTML. Extract and create PowerPoint presentation from PDF. Merge, Encrypt, Split, Repair and Decrypt PDF files. All supported files conversions and manipulations can be found at https://www.convertapi.com/doc/supported-formats',
author='Tomas Rutkauskas',
author_email='support@convertapi.com',
url='https://github.com/ConvertAPI/convertapi-library-python',
download_url='https://github.com/ConvertAPI/convertapi-library-python',
keywords= ['convert', 'api', 'client', 'conversion'],
install_requires= ['requests>=2.4.2'],
classifiers= [],
license='MIT',
)