-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
41 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
39
40
41
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "readeckbot"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"python-telegram-bot",
"httpx",
"rich",
"python-dotenv",
"telegramify-markdown",
"your-telegraph",
"mistletoe",
]
authors = [{ name = "Martín Gaitán", email = "gaitan@gmail.com" }]
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/mgaitan/readeckbot"
[project.scripts]
readeckbot = "readeckbot.__main__:main"
[project.optional-dependencies]
llm = ["llm>=0.23", "llm-gemini>=0.17"]
[tool.ruff]
line-length = 120
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"pytest>=8.3.4",
"pytest-asyncio>=1.0.0",
"pytest-mock>=3.14.1",
"ruff>=0.11.12",
]