-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 816 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 816 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
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "shishki-bot"
version = "0.1.0"
description = "Telegram booking and lightweight operations bot for one stylist."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiogram>=3.7,<4",
"apscheduler>=3.10,<4",
"sqlalchemy>=2.0,<3",
"aiosqlite>=0.20,<1",
"asyncpg>=0.29,<1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2,<9",
"pytest-asyncio>=0.23,<1",
"ruff>=0.5,<1",
]
[project.scripts]
shishki-bot = "app.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q --tb=short"
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]