forked from zejn/pypdf2xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 698 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# coding: utf-8
from distutils.core import setup
setup(name='pypdf2xml',
version='0.1',
description='A reimplementation of pdftoxml in Python, using pdfMiner. Handles unicode characters better.',
author=u'Gašper Žejn'.encode('utf-8'),
author_email='zejn@owca.info',
url='http://zejn.net/labs/',
scripts=['pdf2xml', 'pdfxml2csv'],
install_requires=['pdfminer>=20110515', 'lxml'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)