-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (33 loc) · 948 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
40
41
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.poetry]
authors = [
"Guilhem Saurel <guilhem.saurel@laas.fr>",
"Nicolas Mansard <nmansard@laas.fr>",
"Théo Martinez <tmartinezf@laas.fr>"
]
description = "Tutorial edition framework"
homepage = "https://github.com/gepetto/gepetuto"
license = "BSD-2-Clause"
name = "gepetuto"
readme = "README.md"
version = "1.3.0"
[tool.poetry.dependencies]
jupyterlab = "^4.0.10"
python = "^3.8"
ruff = ">=0.1.11"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
[tool.poetry.scripts]
gepetuto = "gepetuto.__main__:main"
[tool.poetry.urls]
changelog = "https://github.com/gepetto/gepetuto/blob/main/CHANGELOG.md"
[tool.ruff]
extend-ignore = ["D203", "D213"]
extend-select = ["A", "B", "C", "COM", "D", "EM", "EXE", "G", "N", "PTH", "RET", "RUF", "UP", "W", "YTT"]
target-version = "py38"
[tool.tomlsort]
all = true