forked from Gnomeball/SwackQuote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 883 Bytes
/
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
[project]
name = "SwackQuote"
version = "1.3.0"
description = "A repository for the QOTD bot on the swack Discord server"
authors = [
{ name = "Gnomeball" },
{ name = "AlexBlandin" },
{ name = "KrisRalph" },
{ name = "dedbepole" },
]
dependencies = ["py-cord>=2.4.1","tomli_w>=1.0.0","requests>=2.31.0"]
requires-python = ">=3.11"
[project.optional-dependencies]
dev = ["ruff", "ada-url"]
[tool.ruff]
indent-width = 4
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = ["CPY", "G004", "TD003", "S311", "T201", "ANN401", "PLR2004", "W191", "E111", "E114", "E117", "E203", "D206", "D212", "D300", "Q000", "Q001", "Q002", "Q003", "COM812", "COM819", "ISC001", "ISC002"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
quote-style = "double"
line-ending = "lf"
indent-style = "space"
skip-magic-trailing-comma = false