-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 872 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 872 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
[project]
name = "quarto-batch-convert"
version = "2025.9.2"
description = "Converts multiple Jupyter notebooks to Quarto documents at once"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
requires-python = ">=3.13"
dependencies = [
"click==8.1.3",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["quarto", "jupyter", "notebook", "converter", "cli"]
[dependency-groups]
dev = [
"pytest>=8.4.1",
]
[project.scripts]
quarto-batch-convert = "quarto_batch_convert.quarto_batch_convert:convert_files"
qbc = "quarto_batch_convert.quarto_batch_convert:quarto_batch_convert"
[build-system]
requires = ["uv_build>=0.8.9,<0.9.0"]
build-backend = "uv_build"
[project.urls]
"Homepage" = "https://github.com/kompre/quarto_batch_convert"