-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (39 loc) · 1.19 KB
/
pyproject.toml
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
52
[project]
name = "teamspeak_bot"
version = "0.2.1"
authors = [{ name = "jykob" }]
description = "Python TeamSpeak bot using TSBot framework"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"tsbot == 1.5.0",
"tsformatter == 0.2.1",
"result == 0.17.0",
"httpx == 0.27.2 ",
]
license = { file = "LICENSE" }
urls = { repository = "https://github.com/jykob/teamspeak-bot" }
[project.scripts]
teamspeak-bot = "teamspeak_bot.bot:main"
[project.optional-dependencies]
dev = ["ruff >= 0.4.4", "pyright >= 1.1.362", "python-dotenv == 1.0.1"]
[build-system]
requires = ["setuptools >= 75.3.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = { find = { include = ["teamspeak_bot*"] } }
[tool.pyright]
typeCheckingMode = "strict"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "FA", "UP", "ANN", "SIM", "TCH", "ASYNC"]
ignore = ["E501", "ANN401", "ANN1"]