-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.3 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
[project]
name = "sphinx-doc-template"
version = "0.3.0"
requires-python = ">=3.11"
dependencies = ["copier>=9.4.1"]
readme = "README.md"
description = "The Copier template for creating a modern Sphinx documentation project. Write in Markdown or reStructuredText, translate to multiple languages, boost with popular extensions, and enjoy automatic live reload on change."
keywords = ["copier", "project template", "scaffolding", "skeleton", "sphinx"]
license = { file = "LICENSE" }
classifiers = [
"Framework :: Sphinx",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
]
[dependency-groups]
dev = [
"deep-dircmp>=0.2.0",
"git-cliff>=2.8.0",
"nox>=2024.10.9",
"pytest>=8.3.4",
"pytest-datadir>=1.5.0",
]
[project.urls]
repository = "https://github.com/documatt/sphinx-doc-template"
homepage = "https://documatt.com/sphinx-doc-template"
[tool.pytest.ini_options]
# Recommended import mode for new projects
addopts = ["--import-mode=importlib"]
tmp_path_retention_policy = "none"
tmp_path_retention_count = 0