-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1017 Bytes
/
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
[tool.poetry]
name = "stag-erasmus"
version = "1.0.1"
description = ""
authors = ["yoptohlejepeta <[email protected]>"]
readme = "README.md"
packages = [{include = "stag_erasmus"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "0.115.4"
requests = "^2.31.0"
pandas = "^2.1.4"
pydantic = "^2.5.3"
jinja2 = "^3.1.2"
unidecode = "^1.3.7"
uvicorn = "^0.25.0"
python-multipart = "0.0.17"
redis = "^5.0.1"
aiohttp = "^3.9.3"
python-dotenv = "^1.0.1"
logger = "^1.4"
loguru = "^0.7.2"
tqdm = "^4.66.4"
schedule = "^1.2.1"
pydantic-settings = "^2.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["ALL"]
exclude = ["*.ipynb", "__init__.py"]
ignore = [
"FA102",
"D211",
"D213",
"COM812",
"ISC001",
"BLE001",
"D203",
"B008",
"PLR0913",
"FBT001",
"N805",
"TD002",
"TD003",
"FIX002",
"DTZ005",
"RUF013",
"FBT002",
"S113",
"PLC2401",
]