-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.31 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
[build-system]
requires = [
"hatchling",
"hatch-vcs",
]
build-backend = "hatchling.build"
[project]
name = "hatch-sphinx"
dynamic = ["version"]
description = 'A plugin for Hatch for building documentation with Sphinx'
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = []
authors = [
{ name = "Stuart Prescott", email = "stuart@debian.org" },
]
classifiers = [
"Framework :: Hatch",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"hatchling",
"sphinx",
]
[project.urls]
Documentation = "https://github.com/llimeht/hatch-sphinx#readme"
Issues = "https://github.com/llimeht/hatch-sphinx/issues"
Source = "https://github.com/llimeht/hatch-sphinx"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "hatch_sphinx/_version.py"
[project.entry-points.hatch]
sphinx = "hatch_sphinx.hooks"
[tool.hatch.build.targets.wheel]
include = [
"hatch_sphinx/*.py",
"hatch_sphinx/py.typed",
]