-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 1.08 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
50
[project]
name = "discord-bot"
description = "A Python Discord Bot."
version = "3.0.0"
readme = { file = ".github/README.md" }
authors = [{ name = "PaulMarisOUMary" }]
license = { file = "LICENSE" }
requires-python = ">=3.10"
dynamic = ["dependencies"]
[project.urls]
Home = "https://github.com/PaulMarisOUMary/Discord-Bot"
Repository = "https://github.com/PaulMarisOUMary/Discord-Bot"
Issues = "https://github.com/PaulMarisOUMary/Discord-Bot"
[tool.setuptools.dynamic]
dependencies = { file = "requirements.txt" }
[tool.ruff]
exclude = [
".eggs",
".git",
".mypy_cache",
".pytest_cache",
".ruff_cache",
".venv",
".vscode",
"__pypackages__",
"__pycache__",
"build",
"dist",
"docs",
]
line-length = 88
indent-width = 4
[tool.ruff.lint]
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
ignore = ["Q"]
[tool.ruff.format]
indent-style = "space"
line-ending = "auto"
quote-style = "preserve"
[tool.ty.environment]
python-platform = "all"
[tool.ty.analysis]
respect-type-ignore-comments = true