forked from chezou/tabula-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
84 lines (75 loc) · 1.71 KB
/
pyproject.toml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "tabula-py"
description = "Simple wrapper for tabula-java, read tables from PDF into DataFrame"
authors = [
{name = "Aki Ariga", email = "[email protected]"}
]
maintainers = [
{name ="Aki Ariga", email = "[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Text Processing :: General",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
]
keywords = [
"data frame",
"pdf",
"table",
]
requires-python = ">=3.8"
dependencies = [
"pandas >= 0.25.3",
"numpy",
"distro",
]
dynamic = ["version"]
[project.optional-dependencies]
jpype = ["jpype1"]
dev = [
"pytest",
"flake8",
"black",
"isort",
"mypy",
"Flake8-pyproject",
]
test = ["pytest"]
doc = [
"sphinx==7.1.2",
"sphinx_rtd_theme==1.3.0",
"Jinja2==3.1.2",
]
[project.urls]
"Homepage" = "https://github.com/chezou/tabula-py"
"Bug Reports" = "https://github.com/chezou/tabula-py/issues"
"Funding" = "https://github.com/sponsors/chezou"
[tool.setuptools_scm]
[tool.isort]
profile = "black"
[tool.flake8]
ignore = ["E203", "W503"]
max-line-length = 88
exclude = [
".git",
"__pycache__",
"build",
"dist",
".venv",
"tabula/__init__.py",
]
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
# Disable faulthandler plugin on Windows to prevent spurious console noise
addopts = "-p no:faulthandler"