-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 985 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 985 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
[project]
name = "python-pe"
version = "0.1.0"
description = ""
authors = ["Ider Delzo <soloidx@gmail.com>", "Jean-Pierre Chauvel <jean.pierre@chauvel.org>"]
license = "Apache License, Version 2.0"
readme = "README.md"
package-mode = false
requires-python = ">=3.13"
dependencies = [
"ablog==0.11.6",
"libgravatar==1.0.4",
"matplotlib>=3.10.1",
"myst-parser[linkify]==4.0.1",
"shibuya==2025.2.28",
"sphinx==7.2.6",
"sphinx-copybutton==0.5.2",
"sphinx-design==0.5.0",
"sphinx-sitemap==2.7.2",
"sphinx-tabs==3.4.5",
"sphinx-togglebutton==0.3.2",
"sphinxcontrib-youtube==1.4.1",
"sphinxext-opengraph==0.10.0",
]
[dependency-groups]
dev = [
"black==25.9.0",
"isort==5.13.2",
"poethepoet>=0.33.1",
]
[tool.poe.tasks.build]
cmd = "ablog build"
# we pass binary defined inside node package so sphinx can called when building the site
env = { SKETCHVIZ_BINARY = "./node_modules/.bin/sketchviz" }
[tool.black]
line-length = 79