-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
31 lines (27 loc) · 1010 Bytes
/
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
[project]
name = "pdf-bank-statement-parser"
version = "0.1.1"
description = "Command-line tool for converting PDF bank statements into CSV"
authors = [{ name = "Joseph Bolton", email = "[email protected]" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Topic :: File Formats",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"Topic :: Text Processing",
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["pypdfium2>=4.30.0"]
[tool.uv]
dev-dependencies = ["ipython>=8.29.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
homepage = "https://github.com/J-sephB-lt-n/pdf-bank-statement-parser"
changelog = "https://github.com/J-sephB-lt-n/pdf-bank-statement-parser/blob/main/CHANGELOG.md"
[project.scripts]
parse-bank-statement-pdf = "pdf_bank_statement_parser.cli:parse_transactions"