-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 807 Bytes
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
[project]
name = "telegram-web-clone-python"
version = "0.1.0"
description = "Pure Python Telegram Web clone starter"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy[asyncio]>=2.0.31",
"asyncpg>=0.29.0",
"redis>=5.0.7",
"pydantic-settings>=2.3.4",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
"alembic>=1.13.2",
"jinja2>=3.1.4",
"python-multipart>=0.0.9",
"httpx>=0.27.0",
"email-validator>=2.2.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"pytest-asyncio>=0.23.8",
"ruff>=0.5.6"
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["app"]