-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 991 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 991 Bytes
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
[project]
name = "atsphinx-github-io"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Kazuya Takei", email = "myself@attakei.net" }
]
dependencies = [
"atsphinx-bulma>=0.4.1",
"atsphinx-color-text>=0.1.0",
"atsphinx-footnotes>=0.2.0",
"atsphinx-mini18n>=0.3.0",
"pydata-sphinx-theme>=0.13.0",
"python-dotenv>=1.0.1",
"sphinx>=7.2.0",
"sphinx-reredirects>=1.1.0",
"sphinx_design>=0.5.0",
]
license = {text = "Apache-2.0"}
readme = "README.rst"
requires-python = ">=3.12"
[dependency-groups]
dev = [
"sphinx-autobuild>=2021.3.14",
"sphinx-intl>=2.1.0",
"pygithub>=2.3.0",
"esbonio>=0.16.5",
"ruff>=0.11.0",
"doc8>=1.1.2",
"ty>=0.0.1a32",
]
[tool.ruff.lint]
select = ["C90", "D", "E", "F", "I", "W"]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.doc8]
max-line-length = 119
# TODO: Enable after
# ignore-path-errors = [
# "contents/projects.rst;D000",
# ]
ignore = ["D000"]