-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
50 lines (43 loc) · 1 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
[tool.poetry]
name = "fast-api-micro-service-template"
version = "1.3.0"
description = "A Cookiecutter template for spinning up a micro service"
authors = ["Max Pfeiffer <[email protected]>"]
[tool.poetry.dependencies]
python = "3.11.*"
[tool.poetry.dev-dependencies]
cookiecutter = "2.6.0"
coverage = "7.6.8"
docker = "7.1.0"
dockerfile-parse = "2.0.1"
furl = "2.1.3"
httpx = "0.28.1"
pytest = "8.3.4"
pre-commit = "4.0.1"
pytest-cookies = "0.7.0"
pytest-cov = "6.0.0"
toml = "0.10.2"
ruff = "0.8.5"
[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"