-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env python | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name='pdfrw', | ||
version='0.1', | ||
description='PDF file reader/writer library', | ||
long_description=''' | ||
pdfrw lets you read and write PDF files, including | ||
compositing multiple pages together (e.g. to do watermarking, | ||
or to copy an image or diagram from one PDF to another), | ||
and can output by itself, or in conjunction with reportlab. | ||
pdfrw will faithfully reproduce vector formats without | ||
rasterization, so the rst2pdf package has used pdfrw | ||
by default for PDF and SVG images by default since | ||
March 2010. Several small examples are provided. | ||
''', | ||
author='Patrick Maupin', | ||
author_email='[email protected]', | ||
platforms="Independent", | ||
url='http://code.google.com/p/pdfrw/', | ||
packages=['pdfrw', 'pdfrw.objects'], | ||
license="MIT", | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Topic :: Multimedia :: Graphics :: Graphics Conversion', | ||
'Topic :: Software Development :: Libraries' | ||
'Topic :: Utilities' | ||
], | ||
keywords='pdf vector graphics', | ||
) |