forked from eden-box/pdfworkshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (48 loc) · 1.37 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#! usr/bin/env python3.7
from setuptools import setup, find_packages
__application__ = 'pdfworkshop'
__version__ = '1.0.3'
setup(
name=__application__,
python_requires='~=3.5',
version=__version__,
description='PDF compressor utility, using iLovePDF API',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
url='https://github.com/eden-box//{}'.format(__application__),
author='Eden-Box',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Natural Language :: English',
'Topic :: Utilities',
'Topic :: Office/Business',
],
keywords='python pdf compress ilovepdf',
scripts=[],
packages=find_packages(),
include_package_data=True,
install_requires=[
'click',
'appdirs',
'pylovepdf',
],
tests_require=[
],
extras_require={
'dev': [
'wheel',
]
},
entry_points={
'console_scripts': [
'{}=pdfworkshop.cli:start'.format(__application__),
],
},
)