-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
104 lines (95 loc) · 2.18 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[tool.poetry]
name = "flights-scraper-web-app"
version = "0.1.0"
description = "Flights Scraper Web App"
authors = ["Alessandro Miola <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.103.0"
jinja2 = "^3.1.2"
uvicorn = "^0.23.2"
sqlalchemy = "^2.0.20"
python-dotenv = "^1.0.0"
alembic = "^1.12.0"
python-multipart = "^0.0.6"
psycopg2 = "^2.9.7"
environs = "^9.5.0"
selenium = "^4.13.0"
dash = "^2.14.1"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.5"
black = "^24.1.1"
ruff = "^0.2.0"
pre-commit = "^3.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py310"]
preview = true
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
line-length = 100
indent-width = 4
target-version = "py310"
output-format = "grouped"
show-fixes = true
[tool.ruff.lint]
select = [
# default
"E", # pycodestyle error
"F", # flake8 error
# extra
"A", # builtin shadowing
"B", # flake8 bugbear
"BLE", # avoid bare excepts
"C4", # simplify comprehensions
"G", # logging format
"I", # isort imports
"N", # conform to PEP8 naming rules
"RET", # return values
"S", # bandit
"TRY", # exceptions antipatterns
"UP", # upgrade syntax
"W", # pycodestyle warning
"YTT", # wrong usage of sys.info
]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-third-party = ["fastapi", "pydantic", "starlette"]
[tool.ruff.lint.flake8-bugbear]
# Allow default arguments like, e.g., `data: List[str] = fastapi.Query(None)`.
extend-immutable-calls = ["fastapi.Depends", "fastapi.Form"]
[tool.ruff.lint.per-file-ignores]
"src/core/scraper/scraper.py" = ["N812"]
"src/db/base.py" = ["F401"]
"src/db/base_class.py" = ["N805"]
"src/entities/flight.py" = ["S101"]