-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.23 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "secblk"
version = "0.0.1"
description = "Extract securities tables from PDFs."
readme = "README.md"
license = {file="LICENSE.md"}
authors = [
{name = "Carlo A. Furia", email = "c.a.furia@gmail.com"},
]
keywords = ["PDF", "tables", "isin"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent"
]
requires-python = ">=3.10"
dependencies = [
"pyyaml",
"openpyxl",
"pandas",
"tabula-py",
"requests"
]
[tool.hatch.build.targets.sdist]
include = [
"*.yaml"
]
[tool.hatch.build.targets.wheel]
only-include = ["secblk"] # Include these directories
# Tests are not packaged, but can still be run with editable install
# of `dev` target
[tool.hatch.metadata]
exclude = [
"/test",
]
[project.urls]
Repository = "https://github.com/bugcounting/secblk.git"
[project.optional-dependencies]
docling = [
"docling"
]
dev = [
"docling",
"pytest"
]
[project.scripts]
secblk = "secblk.subs:main"