-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (65 loc) · 2 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
# Copyright 2024 Remy Blank <[email protected]>
# SPDX-License-Identifier: MIT
[project]
name = "t-doc-common"
description = "Common functionality for t-doc"
authors = [{name = "Remy Blank", email = "[email protected]"}]
urls.Code = "https://github.com/t-doc-org/common"
urls.Documentation = "https://t-doc.org/common/"
urls.Homepage = "https://t-doc.org/"
readme = "README.md"
license = "MIT"
# BUG(hatchling): PEP 639 says it should be a list, but hatchling wants a table
# <https://github.com/pypa/hatch/issues/1715>. The files are recognized
# automatically, so for now we don't specify them explicitly.
# license-files = ["LICENSE.txt", "LICENSES.deps.txt"]
keywords = []
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Sphinx :: Extension",
"Framework :: Sphinx :: Theme",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: SQL",
"Topic :: Documentation :: Sphinx",
"Topic :: Education",
"Topic :: Internet :: WWW/HTTP :: Site Management",
]
requires-python = ">=3.12"
dependencies = [
"colorama>=0.4.6; sys_platform == 'win32'",
"myst-parser>=4.0.0",
"pyyaml>=6.0.2",
"Sphinx>=8.1.3",
"sphinx-book-theme>=1.1.3",
"sphinx-copybutton>=0.5.2",
"sphinx_design>=0.6.1",
]
dynamic = ["version"]
[project.scripts]
tdoc = "tdoc.common.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "tdoc/common/__init__.py"
[tool.hatch.metadata.hooks.custom]
path = "tools/hatch_hooks.py"
[tool.hatch.build.hooks.custom]
path = "tools/hatch_hooks.py"
[tool.hatch.build.targets.sdist]
artifacts = [
"/tdoc/common/static.gen/",
]
[tool.hatch.build.targets.wheel]
only-include = [
"tdoc",
]
artifacts = [
"/tdoc/common/static.gen/",
]