forked from AndyCyberSec/pylovepdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 944 Bytes
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='pylovepdf',
version='1.3.1',
description='ilovepdf.com python API library',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='pdf unlock compress manipulate edit protect pdftojpg jpgtopdf pdfa',
url='https://github.com/AndyBTuttofare/pylovepdf',
author='Andrea Bruschi',
author_email='[email protected]',
license='GNU GPLv3',
packages=['pylovepdf', 'pylovepdf.tools'],
# data_files=[('pylovepdf/samples', ['*.py'])],
install_requires=['requests', 'urllib3'],
include_package_data=True)