-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 946 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 946 Bytes
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
[project]
name = "cvf-openaccess-publishing-pipeline"
version = "0.1.0"
description = "CVF Open Access Publishing Pipeline"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"cyclopts>=4.11.2",
"ipython>=9.13.0",
"jinja2>=3.1.6",
"lark>=1.3.1",
"matplotlib>=3.10.8",
"multiprocess>=0.70.19",
"nameparser>=1.1.3",
"numpy>=2.4.4",
"pikepdf>=10.3.0",
"pydantic>=2.12.5",
"pymupdf>=1.26.7",
"reportlab>=4.4.9",
"scikit-image>=0.26.0",
"tqdm>=4.67.3",
"unidecode>=1.4.0",
]
[build-system]
requires = ["uv_build>=0.11.7,<0.12.0"]
build-backend = "uv_build"
[project.scripts]
cvf-openaccess-publishing-pipeline = "cvf.openaccess_publishing_pipeline.__main__:app"
[tool.uv.build-backend]
# `cvf` is an implicit PEP 420 namespace; this package provides the
# `cvf.openaccess_publishing_pipeline` module within that namespace.
module-name = "cvf.openaccess_publishing_pipeline"