-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 887 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
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "botka"
version = "0.1.0"
description = "Telegram bot backend"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiogram>=3.24.0",
"apscheduler>=3.10.4",
"SQLAlchemy>=2.0.25",
"dishka>=1.1.0",
"pydantic-settings>=2.2.1",
"httpx>=0.27.0",
"PyJWT>=2.9.0",
"aiosqlite>=0.20.0",
"fastapi>=0.110.0",
"uvicorn>=0.27.0",
"pytest>=9.0.2",
"pytest-asyncio>=0.23.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[project.scripts]
botka = "botka.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
botka = ["mac_tracker/static/**/*"]