-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
38 lines (31 loc) · 937 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
[tool.poetry]
name = "iorgen"
version = "0.0.1"
description = "Iorgen is a multi languages code generator to parse a predefined input template"
authors = ["Association Prologin <[email protected]>", "Sacha 'Shaac' Delanoue <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://gitlab.com/prologin/tech/tools/iorgen"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Code Generators",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.9"
pyyaml = "^6"
[tool.poetry.dev-dependencies]
black = "24.10.0"
mypy = "1.11.2"
pre-commit = "^4"
pylint = "3.3.1"
types-pyyaml = "^6"
[tool.poetry.scripts]
iorgen = "iorgen.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88