-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1.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
[tool.poetry]
name = "elansbackend"
version = "0.1.0"
description = ""
authors = ["Mark Fomin <mark@difhel.dev>", "Andrew Cherkashin <andrey.a.cherkashin@gmail.com>"]
package-mode = false
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.111.1"
loguru = "^0.7.2"
python-jose = "^3.3.0"
sentry-sdk = {extras = ["loguru"], version = "^2.12.0"}
pymongo = "^4.8.0"
passlib = "^1.7.4"
[tool.poetry.group.dev.dependencies]
pylint = "^3.2.6"
types-passlib = "^1.7.7.13"
pyright = "^1.1.374"
black = "^24.8.0"
pre-commit = "^3.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint."MASTER"]
jobs=4
persistent="no"
[tool.pylint."MESSAGES CONTROL"]
disable="fixme,multiple-statements,no-self-argument,missing-class-docstring,import-error,no-name-in-module,too-few-public-methods,missing-function-docstring,missing-module-docstring"
enable="wildcard-import"
[tool.pylint."FORMAT"]
max-line-length=120
indent-string=" "
indent-after-paren=4
expected-line-ending-format=""
[tool.pyright]
include = ["./src/**"]
[tool.black]
line-length=120
unstable=true