-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
39 lines (36 loc) · 984 Bytes
/
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
[project]
name = "python-pe"
version = "0.1.0"
description = ""
authors = ["Ider Delzo <[email protected]>", "Jean-Pierre Chauvel <[email protected]>"]
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]==2.0.0",
"shibuya==2025.2.28",
"sphinx==7.2.6",
"sphinx-copybutton==0.5.2",
"sphinx-design==0.5.0",
"sphinx-sitemap==2.5.1",
"sphinx-tabs==3.4.5",
"sphinx-togglebutton==0.3.2",
"sphinxcontrib-youtube==1.4.1",
"sphinxext-opengraph==0.9.1",
]
[dependency-groups]
dev = [
"black==24.3.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