-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 988 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 988 Bytes
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
from setuptools import setup
__version__ = '0.2.5'
setup(
name="py-pspdfkit",
version=__version__,
url="https://github.com/tizz98/py-pspdfkit",
download_url="https://github.com/tizz98/py-pspdfkit/tarball/{version}".format(
version=__version__,
),
author="Elijah Wilson",
author_email="elijah@elijahwilson.me",
description="A simple API wrapper for PSPDFKit",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
license="MIT",
keywords="pspdfkit pdf",
install_requires=[
"requests>=2.22,<3.0",
],
packages=[
"pspdfkit",
],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
zip_safe=True,
)