-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.64 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
include = ["quartodoc"]
[tool.pytest.ini_options]
markers = []
testpaths = ["quartodoc"]
[project]
name = "quartodoc"
authors = [{name="Michael Chow", email="[email protected]"}]
license.file = "LICENSE"
description = "Generate API documentation with Quarto."
readme = "README.md"
keywords = ["documentation", "quarto"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"black",
"click",
"griffe >= 0.33",
"sphobjinv >= 2.3.1",
"tabulate >= 0.9.0",
"importlib-metadata >= 5.1.0",
"importlib-resources >= 5.10.2",
"pydantic",
"pyyaml",
"requests",
"typing-extensions >= 4.4.0",
"watchdog >= 3.0.0",
"plum-dispatch < 2.0.0; python_version < '3.10'",
"plum-dispatch > 2.0.0; python_version >= '3.10'"
]
[project.urls]
homepage = "https://machow.github.io/quartodoc"
repository = "https://github.com/machow/quartodoc"
ci = "https://github.com/machow/quartodoc/actions"
[project.optional-dependencies]
dev = [
"pytest<8.0.0",
"pytest-cov",
"jupyterlab",
"jupytext",
"syrupy",
"pre-commit"
]
[project.scripts]
quartodoc = "quartodoc.__main__:cli"