-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (65 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (65 loc) · 2.16 KB
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
[tool.poetry]
name = "tabit"
version = "0.1.0"
description = "Online service for hr and conpany owners"
authors = [
"Александр Келесидис <amida81@yandex.ru>",
"Александр Колганов <greykol501@yandex.ru>",
"Александр Хмылов <a.a.hm@yandex.ru>",
"Андрей Агеев <ageevandrey112@yandex.ru>",
"Андрей Жердецкий <aszherdetskiy@yandex.ru>",
"Антон Стремоусов <stremousoff@gmail.com>",
"Вадим Волков <bcdy2146@yandex.ru>",
"Вячеслав Выскребенец <slavavyskrebenets@yandex.ru>",
"Динар Мирсаитов <mdm-f19@yandex.ru>",
"Дмитрий Бурмагин <dmitryodinov@yandex.ru>",
"Егор Горьковой <egor.gorkij@yandex.ru>",
"Лев Акчурин <levisserena@yandex.ru>",
"Максим Березин <mms2000@mail.ru>",
"Максим Караськин <mac7simka@yandex.ru>",
"Никита Пономаренко <nicros23@yandex.ru>",
"Рулан Касымов <marco.markovich@yandex.ru>",
"Татьяна Харченко <mistlenok@yandex.ru>"
]
readme = "README.md"
packages = [
{ include = "src" },
]
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.115.6"
alembic = "^1.14.1"
pydantic-settings = "^2.7.0"
uvicorn = "^0.34.0"
fastapi-users = {extras = ["sqlalchemy"], version = "^14.0.1"}
loguru = "^0.7.3"
asyncpg = "^0.30.0"
sqlalchemy = "^2.0.38"
click = "^8.1.8"
pydantic-extra-types = {extras = ["phone-numbers"], version = "^2.10.2"}
phonenumbers = "^8.13.55"
fastapi-mail = "1.4.2"
jinja2 = "^3.1.5"
python-slugify = "^8.0.4"
slugify = "^0.0.1"
psycopg2-binary = "^2.9.10"
pytest-lazy-fixtures = "^1.1.2"
aiofiles = "^24.1.0"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
sqladmin = "^0.21.0"
itsdangerous = "^2.2.0"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
ruff = "^0.8.4"
pre-commit = "^4.0.1"
faker = "^33.3.1"
pytest = "^8.3.4"
python-dotenv = "^1.0.1"
httpx = "^0.28.1"
pytest-asyncio = "^0.25.3"
termcolor = "^2.5.0"
factory-boy = "^3.3.3"
async-factory-boy = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"