-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1022 Bytes
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1022 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
46
47
48
49
50
51
[project]
name = "superseriousbot"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp~=3.13.5",
"aiosqlite~=0.22.1",
"async-lru~=2.3.0",
"caribou~=0.6.0",
"coloredlogs>=15.0.1",
"dateparser~=1.4.0",
"googletrans>=4.0.2",
"gtts>=2.5.4",
"howlongtobeatpy~=1.0.21",
"ijson~=3.5.0",
"python-dotenv~=1.2.2",
"python-telegram-bot[job-queue,rate-limiter,webhooks]~=22.7",
"spurdify>=0.3.0",
"uwuify>=1.3.1",
"telegramify-markdown~=1.1.2",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"W", # pycodestyle warnings
"I", # isort
"UP", # pyupgrade (auto-fixable)
"ASYNC", # async best practices
"B", # bugbear
"RUF", # ruff-specific
]
ignore = [
"E501", # line length (handled by formatter/line-length)
]
[dependency-groups]
dev = [
"ty>=0.0.31",
]
[tool.ty.environment]
python-version = "3.13"
root = ["src"]
[tool.ty.src]
include = ["src"]