-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 800 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 800 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
[tool.poetry]
name = "string-to-code"
version = "0.5.0"
description = "Generates a piece of messy code in a given language displaying a given string "
authors = ["piotr.idzik <vil02@o2.pl>"]
readme = "./string_to_code/README.md"
license = "MIT"
packages = [{include = "string_to_code"}]
repository = "https://github.com/vil02/string_to_code_proj"
keywords = ["code-generation"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "8.3.5"
pytest-mock = "3.14.0"
pylint = "3.3.6"
flake8 = "7.2.0"
flake8-pytest-style = "2.1.0"
ruff = "0.11.4"
coverage = "7.8.0"
black = "25.1.0"
mypy = "1.15.0"
bandit = "1.8.3"
xenon = "0.9.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"