-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
63 lines (58 loc) · 1.53 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
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "teamtalk-py"
version = "1.3.0"
description = "a simple but powerful pythonic library for making bots for the TeamTalk5 Conferencing System"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{name = "JessicaTegner", email = "jessica.tegner@outlook.com"}]
keywords = ["teamtalk", "teamtalk5", "teamtalk sdk", "conferencing"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"beautifulsoup4>=4.12",
"patool>=3.0",
"requests>=2.32",
"typing-extensions>=4.12",
]
[project.urls]
"Issue Tracker" = "https://github.com/JessicaTegner/teamtalk.py/issues/"
[project.optional-dependencies]
docs = [
"sphinx-sitemap>=2.6",
"sphinx>=8.1",
"sphinxcontrib-napoleon>=0.7",
"sphinxcontrib-trio>=1.1",
]
[tool.black]
line-length = 125
skip-string-normalization = true
[tool.flake8]
ignore = ["E203", "E731", "W503", "D401", "DAR402", "DAR103"]
exclude = [
"docs/*",
"tests/*",
"teamtalk/tools/*",
"__pycache__",
"teamtalk/implementation/*",
"teamtalk/__init__.py",
"teamtalk/implementation/__init__.py",
"example.py",
]
max-line-length = 125
count = true
statistics = true
max-complexity = 20
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
]