-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (75 loc) · 2.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "atsphinx-htmx-boost"
version = "0.2.2"
description = "[EXPERIMENTAL] Improve user-experience for Sphinx document."
authors = [
{ name = "Kazuya Takei", email = "[email protected]" }
]
dependencies = [
"beautifulsoup4",
"lxml",
"sphinx",
"atsphinx-helper",
]
readme = "README.rst"
requires-python = ">= 3.9"
license = "Apache-2.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: reStructuredText",
]
[project.urls]
Home = "https://github.com/atsphinx/htmx-boost"
Repository = "https://github.com/atsphinx/htmx-boost"
Issues = "https://github.com/atsphinx/htmx-boost/issues"
Changelog = "https://github.com/atsphinx/htmx-boost/blob/main/CHANGES.rst"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
managed = true
dev-dependencies = [
"furo~=2024.1.29",
"jinja2~=3.1.3",
"pytest~=8.0.2",
"sphinx~=7.2.6",
"sphinx-rtd-theme~=2.0.0",
"esbonio~=0.16.4",
"sphinx-intl~=2.1.0",
"atsphinx-mini18n~=0.2.0",
"atsphinx-goto-top>=0.1.4",
"ruff>=0.9.1",
"mypy>=1.14.1",
"doc8>=1.1.2",
"types-beautifulsoup4>=4.12.0.20241020",
]
[tool.rye.scripts]
setup = {chain = ["setup:sync", "setup:pre-commit"]}
"setup:sync" = "rye sync --no-lock --all-features"
"setup:pre-commit" = "pre-commit install"
bump = "./tools/release-commit.py"
doc = "make -C doc"
[tool.ruff.lint]
select = ["C90", "D", "E", "F", "I", "W"]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/atsphinx"]
only-includes = ["src/atsphinx"]