-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (40 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
[project]
name = "MongoDB-Project-Workshop"
version = "2.0.0"
description = ""
authors = [
{name = "KuligKamil", email = "kamil.marek.kulig@gmail.com"},
{name = "ABrzyzek", email = "brzyzekadam@gmail.com"},
]
dependencies = [
"pytest>=8.3.2",
"ruff>=0.6.1",
"pydantic>=2.8.2",
"beanie>=1.26.0",
"faker>=27.0.0",
"pytest-asyncio>=0.23.8",
"ipykernel>=6.29.5",
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
"W191", # indentation contains tabs
"E712", # for models TODO: ignore for only one file
"UP007", # issue with pydantic optioanl and pipe |
]