forked from chezou/tabula-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
62 lines (58 loc) · 1.26 KB
/
setup.cfg
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[metadata]
name = tabula-py
description = Simple wrapper for tabula-java, read tables from PDF into DataFrame
author = Aki Ariga
author_email = chezou@gmail.com
maintainer = Aki Ariga
maintainer_email = chezou@gmail.com
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT License
url = https://github.com/chezou/tabula-py
classifiers =
Development Status :: 5 - Production/Stable
Topic :: Text Processing :: General
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.5
keywords =
data frame
pdf
table
[options]
packages = find:
include_package_data = True
python_requires = >=3.5
install_requires =
pandas >= 0.25.3
numpy
distro
setup_requires =
setuptools_scm
[options.extras_require]
dev =
pytest
flake8
black
isort
test =
pytest
doc =
sphinx
sphinx_rtd_theme
[flake8]
ignore = E203, W503
max-line-length = 88
exclude =
.git,
__pycache__,
build,
dist,
.venv,
tabula/__init__.py
[isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = True
known_third_party = nox,numpy,pandas,pkg_resources,setuptools,sphinx_rtd_theme