-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
45 lines (40 loc) · 1.01 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
[project]
name = "pdftranscript"
version = "1.0.5"
description = "PDF to semantic HTML conversion."
authors = [
{ name = "František Malina", email = "fmalina@pm.me" }
]
readme = "README.md" # Update this if you have a README file.
homepage = "https://github.com/fmalina/PDFtranscript/"
keywords = ["PDF", "HTML", "conversion"]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"
]
requires-python = ">=3.9"
dependencies = [
"lxml",
"cssselect",
"freetype-py",
"python-dotenv"
]
[project.scripts]
pdftranscript = "pdftranscript.transcript:main"
pdfttf = "pdftranscript.ttf:main"
pdf2html = "pdftranscript.pdf2html:main"
[tool.setuptools]
packages = ["pdftranscript"]
[tool.ruff]
lint.select = ["E", "F", "B"]
line-length = 100
format.quote-style = "single"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"tests/",
]