-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/rosinenpicker"]
[project]
name = "rosinenpicker"
dynamic = ["version"]
authors = [
{ name="Johannes Elias", email="joheli@gmx.net" },
]
description = "A package for picking the juciest text morsels out of a pile of documents."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
]
dependencies = [
"pandas>=2.2.0",
"pydantic>=2.6.1",
"python-docx>=1.1.0",
"pyyaml>=6.0.1",
"pdfminer.six>=20231228",
"sqlalchemy>=2.0.27",
]
[project.urls]
Homepage = "https://github.com/joheli/rosinenpicker"
Issues = "https://github.com/joheli/rosinenpicker/issues"
[tool.hatch.version]
path = "src/rosinenpicker/start.py"
[project.scripts]
rosinenpicker = "rosinenpicker.start:cli"