forked from Balonger/pdfformfields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.12 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
"""Setup for the pdfformfields package."""
import setuptools
with open('README.md') as f:
README = f.read()
setuptools.setup(
author="Nguyen Ba Long",
author_email="[email protected]",
name='pdfformfields',
license="GPLv3+",
description='pdfformfields is a Python wrapper around pdftk that fills in pdf forms from a Python dictionary.',
version='v0.0.2',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/Balonger/pdfformfields',
packages=setuptools.find_packages(),
python_requires=">=3.7",
install_requires=['xfdfgen'],
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)