forked from Gepetto/gepetuto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (37 loc) · 1.02 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.isort]
profile = "black"
[tool.poetry]
authors = [
"Guilhem Saurel <[email protected]>",
"Nicolas Mansard <[email protected]>",
"Théo Martinez <[email protected]>"
]
description = "Tutorial edition framework"
homepage = "https://github.com/gepetto/gepetuto"
license = "BSD-2-Clause"
name = "gepetuto"
readme = "README.md"
version = "1.2.0"
[tool.poetry.dependencies]
black = {extras = ["jupyter"], version = "^23.7.0"}
isort = "^5.12.0"
jupyterlab = "^4.0.5"
python = "^3.8"
ruff = "^0.0.284"
[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