-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 902 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 902 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
[tool.poetry]
name = "puzzle-generator"
version = "0.18.1"
description = "Generates python code representing a puzzle"
authors = ["piotr.idzik <vil02_puzzle_generator@10g.pl>"]
readme = "./puzzle_generator/README.md"
license = "MIT"
packages = [{include = "puzzle_generator"}]
repository = "https://github.com/vil02/puzzle_generator"
keywords = ["puzzle-generation", "quiz-generation", "code-generation"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0.0"
black = "26.3.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
bandit = "1.9.4"
coverage = "7.13.5"
flake8 = "7.3.0"
flake8-bugbear = "25.11.29"
flake8-pytest-style = "2.2.0"
isort = "8.0.1"
mypy = "1.19.1"
pylint = "4.0.5"
pyright = {extras = ["nodejs"], version = "1.1.408"}
pytest = "9.0.2"
ruff = "0.15.7"
xenon = "0.9.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"