Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
35 lines (30 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (30 loc) · 1.17 KB
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
importsetuptools
defparse_requirements(filename, session=None):
""" load requirements from a pip requirements file """
lineiter= (line.strip() forlineinopen(filename))
return [lineforlineinlineiteriflineandnotline.startswith("#")]
withopen("README.md", "r", encoding='utf-8') asfh:
long_description=fh.read()
setuptools.setup(
name="pdfservices-sdk",
version="4.3.0",
author='Adobe Acrobat Services',
author_email='extractapi@adobe.com',
license='Apache2',
description="Adobe PDFServices Client Library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.adobe.com/go/pdftoolsapi_doc",
package_dir={'': 'src'},
packages=setuptools.find_packages('src'),
python_requires=">=3.10",
install_requires=parse_requirements('requirements.txt', session=False),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
zip_safe=False
)