-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 1023 Bytes
/
setup.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
from setuptools.depends import get_module_constant
from setuptools import setup
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',
)