-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.45 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
[project]
urls = { "issues" = "https://github.com/marlanperumal/pdf_statement_reader/issues", "source" = "https://github.com/marlanperumal/pdf_statement_reader", "homepage" = "https://github.com/marlanperumal/pdf_statement_reader" }
name = "pdf-statement-reader"
version = "0.3.4"
description = "PDF Statement Reader"
keywords = ["pdf", "statement", "reader", "bank statement", "digitise"]
authors = [{ name = "Marlan Perumal", email = "[email protected]" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["click>=8.1.8", "pikepdf>=9.5.1", "tabula-py[jpype]>=2.10.0"]
[dependency-groups]
dev = [
"coverage>=7.6.10",
"ipykernel>=6.29.5",
"pytest-cov>=6.0.0",
"pytest>=8.3.4",
"coveralls>=4.0.1",
]
[project.scripts]
psr = "pdf_statement_reader:cli"
[tool.pytest.ini_options]
addopts = ["-v", "--cov=pdf_statement_reader", "--import-mode=importlib"]
[tool.hatch.build]
exclude = [
"tests/*",
"docs",
"docs/*",
"**/.ipynb_checkpoints",
"**/.ipynb_checkpoints/*",
"tests",
"tests/*",
"*.yml",
".gitignore",
"uv.lock",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"