-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
51 lines (44 loc) · 1.01 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
47
48
49
50
51
[tool.poetry]
name = "python-poetry"
version = "1.13.0"
description = "A Python Docker image with Poetry installed and ready to use."
authors = ["Max Pfeiffer <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
click = "8.1.7"
python-on-whales = "0.74.0"
[tool.poetry.dev-dependencies]
bcrypt = "4.2.1"
coverage = "7.6.9"
docker-image-py = "0.1.13"
furl = "2.1.3"
pytest = "8.3.4"
pytest-cov = "6.0.0"
pytest-dotenv = "0.5.2"
pre-commit = "4.0.1"
semver = "3.0.2"
testcontainers = "4.8.2"
[tool.ruff]
exclude = [".venv"]
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # pycodestyle
"W", # pycodestyle
"I", # isort
"D", # pydocstyle
"UP", # pyupgrade
"ASYNC", # flake8-async
"RUF", # Ruff-specific rules
]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
# https://docs.pytest.org/en/latest/reference/customize.html
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"