-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.44 KB
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
68
[build-system]
requires = ["flit_core"]
build-backend = "flit_core.buildapi"
[project]
name = "adi-doctools"
description = "ADI's sphinx extensions and theme"
readme = "README.md"
authors = [
{name = "Jorge Marques", email="[email protected]"}
]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 1 - Planning",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: reStructuredText",
]
dependencies = [
"docutils",
"sphinx",
"lxml",
"pygments >= 2.7",
"PyYAML",
]
requires-python = ">=3.8"
dynamic = ["version"]
[project.optional-dependencies]
cli = [
"weasyprint",
]
mcp = [
"mcp >= 1.0",
]
test = [
"pytest",
"ruff",
]
[tool.setuptools.packages.find]
where = [""]
include = ["adi_doctools*"]
namespaces = true
[project.entry-points."sphinx.html_themes"]
cosmic = 'adi_doctools'
harmonic = 'adi_doctools'
[project.scripts]
adoc = "adi_doctools.cli:entry_point"
adoc-mcp = "adi_doctools.mcp:main"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]