-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
40 lines (37 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
long_desc = """
PDFTables helps with extracting tables from PDF files.
"""
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers for classifiers
conf = dict(name='pdftables',
version='0.0.3',
description="Parses PDFs and extracts what it believes to be tables.",
long_description=long_desc,
classifiers=[
"Development Status :: 7 - Inactive",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
],
keywords='',
author='ScraperWiki Ltd',
author_email='feedback@scraperwiki.com',
url='http://scraperwiki.com',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=[],
include_package_data=False,
zip_safe=False,
install_requires=[
'pdfminer>=20110515',
'docopt>=0.6',
],
tests_require=[],
entry_points={
'console_scripts': [
'pdftables-render = pdftables.scripts.render:main',
]
})
if __name__ == '__main__':
setup(**conf)