-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (42 loc) · 1.02 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
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "collocation-coach"
version = "0.1.0"
description = "Open-source Telegram bot for learning English collocations through short daily lessons."
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
authors = [
{ name = "direct41" }
]
dependencies = [
"aiogram>=3.22.0,<4.0.0",
"asyncpg>=0.30.0,<1.0.0",
"greenlet>=3.2.4,<4.0.0",
"pydantic-settings>=2.11.0,<3.0.0",
"pyyaml>=6.0.2,<7.0.0",
"sqlalchemy>=2.0.43,<3.0.0",
]
[project.optional-dependencies]
dev = [
"aiosqlite>=0.21.0,<1.0.0",
"pytest>=9.0.0,<10.0.0",
"pytest-asyncio>=1.2.0,<2.0.0",
]
[dependency-groups]
dev = [
"aiosqlite>=0.21.0,<1.0.0",
"pytest>=9.0.0,<10.0.0",
"pytest-asyncio>=1.2.0,<2.0.0",
]
[project.scripts]
collocation-coach = "collocation_coach.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/collocation_coach"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.uv]
default-groups = ["dev"]