forked from zejn/pypdf2xml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
22 lines (19 loc) · 752 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# coding: utf-8
from setuptools import setup
setup(name='pypdf2xml',
version='0.3',
description='A reimplementation of pdftoxml in Python, using pdfMiner. Handles unicode characters better.',
author=u'Gašper Žejn'.encode('utf-8'),
author_email='[email protected]',
url='https://github.com/zejn/pypdf2xml',
scripts=['pdf2xml', 'pdfxml2csv', 'headerfilter'],
packages=['pypdf2xml'],
install_requires=['pdfminer==20140328', 'lxml'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)