| 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. It is capable of: |
|---|
| 7 |
|
|---|
| 8 |
- extracting document information (title, author, ...), |
|---|
| 9 |
- splitting documents page by page, |
|---|
| 10 |
- merging documents page by page, |
|---|
| 11 |
- cropping pages, |
|---|
| 12 |
- merging multiple pages into a single page. |
|---|
| 13 |
|
|---|
| 14 |
By being Pure-Python, it should run on any Python platform without any |
|---|
| 15 |
dependencies on external libraries. It can also work entirely on StringIO |
|---|
| 16 |
objects rather than file streams, allowing for PDF manipulation in memory. |
|---|
| 17 |
It is therefore a useful tool for websites that manage or manipulate PDFs. |
|---|
| 18 |
""" |
|---|
| 19 |
|
|---|
| 20 |
setup( |
|---|
| 21 |
name="pyPdf", |
|---|
| 22 |
version="1.7", |
|---|
| 23 |
description="PDF toolkit", |
|---|
| 24 |
long_description=long_description, |
|---|
| 25 |
author="Mathieu Fenniak", |
|---|
| 26 |
author_email="mfenniak@pobox.com", |
|---|
| 27 |
url="http://pybrary.net/pyPdf/", |
|---|
| 28 |
download_url="http://pybrary.net/pyPdf/pyPdf-1.7.tar.gz", |
|---|
| 29 |
classifiers = [ |
|---|
| 30 |
"Development Status :: 4 - Beta", |
|---|
| 31 |
"Intended Audience :: Developers", |
|---|
| 32 |
"License :: OSI Approved :: BSD License", |
|---|
| 33 |
"Programming Language :: Python", |
|---|
| 34 |
"Operating System :: OS Independent", |
|---|
| 35 |
"Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 36 |
], |
|---|
| 37 |
packages=["pyPdf"], |
|---|
| 38 |
) |
|---|
| 39 |
|
|---|