-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
47 lines (42 loc) · 1.19 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
[tool.poetry]
name = "cookiecutter-fastapi-backend"
version = "0.4.1"
description = "Cookiecutter template to build and deploy fastapi backends..batteries included"
authors = ["nickatnight <[email protected]>"]
readme = "README.md"
packages = []
homepage = "https://github.com/nickatnight/cookiecutter-fastapi-backend"
repository = "https://github.com/nickatnight/cookiecutter-fastapi-backend"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
cookiecutter = "2.6.0"
pytest = "8.3.3"
pytest-cookies = "0.7.0"
sh = "2.0.7"
binaryornot = "0.4.4"
pre-commit = "3.8.0"
pytest-instafail = "0.5.0"
[tool.ruff]
line-length = 100
exclude = [".git", "__pycache__", ".mypy_cache", ".pytest_cache"]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
# "I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"B904",
"B006",
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"