| 1 |
#!/usr/bin/env python |
|---|
| 2 |
|
|---|
| 3 |
from distutils.core import setup |
|---|
| 4 |
|
|---|
| 5 |
long_description = """ |
|---|
| 6 |
A Pure-Python library built as a PDF toolkit. At present, there is only one |
|---|
| 7 |
actual tool in the toolkit - the ability to grab pages from PDFs and output |
|---|
| 8 |
them into a new PDF. Like a hammer, this tool is useful for two operations: |
|---|
| 9 |
splitting and merging. You can extract individual pages from a PDF file, |
|---|
| 10 |
or selectively merge pages from multiple PDF files. |
|---|
| 11 |
|
|---|
| 12 |
By being Pure-Python, it should run on any Python platform without any |
|---|
| 13 |
dependencies on external libraries. It can also work entirely on StringIO |
|---|
| 14 |
objects rather than file streams, allowing for PDF manipulation in memory. |
|---|
| 15 |
It is therefore a useful tool for websites that manage or manipulate PDFs. |
|---|
| 16 |
""" |
|---|
| 17 |
|
|---|
| 18 |
setup( |
|---|
| 19 |
name="pyPdf", |
|---|
| 20 |
version="1.0", |
|---|
| 21 |
description="PDF toolkit", |
|---|
| 22 |
long_description=long_description, |
|---|
| 23 |
author="Mathieu Fenniak", |
|---|
| 24 |
author_email="mfenniak@pobox.com", |
|---|
| 25 |
url="http://stompstompstomp.com/pyPdf/", |
|---|
| 26 |
download_url="http://stompstompstomp.com/pyPdf/pyPdf-1.0.tar.gz", |
|---|
| 27 |
classifiers = [ |
|---|
| 28 |
"Development Status :: 4 - Beta", |
|---|
| 29 |
"Intended Audience :: Developers", |
|---|
| 30 |
"License :: OSI Approved :: BSD License", |
|---|
| 31 |
"Programming Language :: Python", |
|---|
| 32 |
"Operating System :: OS Independent", |
|---|
| 33 |
"Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 34 |
], |
|---|
| 35 |
packages=["pyPdf"], |
|---|
| 36 |
) |
|---|
| 37 |
|
|---|