forked from chezou/tabula-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 806 Bytes
/
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
from setuptools import setup, find_packages
__author__ = 'Michiaki Ariga'
setup(
name='tabula-py',
version='0.4.0',
description='Simple wrapper for tabula, read tables from PDF into DataFrame',
author=__author__,
author_email='[email protected]',
url='https://github.com/chezou/tabula-py',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Text Processing :: General',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 2.7',
],
include_package_data=True,
packages=find_packages(),
license='MIT License',
keywords=['data frame', 'pdf', 'table'],
setup_requires=[
'flake8',
],
install_requires=[
'pandas',
],
)