-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
95 lines (85 loc) · 2.1 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "GatekeeperV2"
dynamic = ["version"]
authors = [
{ name = "k8thekat", email = "Cadwalladerkatelynn+Gatekeeper@gmail.com" },
]
description = "A Discord Bot for Cube Coders AMP"
readme = { file = "README", content-type = "text/markdown" }
requires-python = ">=3.11.0"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[project.urls]
GitHub = "https://github.com/k8thekat/GatekeeperV2"
Changelog = "https://github.com/k8thekat/GatekeeperV2/blob/main/changelog"
[tool.setuptools.dynamic]
dependencies = { file = "requirements.txt" }
[tool.setuptools]
packages = ["ampapi"]
include-package-data = true
[tool.ruff]
target-version = "py311"
line-length = 125
[tool.ruff.lint]
exclude = ["docs/resources/*.py"]
select = [
"A",
"C4",
"F",
"G",
"I",
"PTH",
"RUF",
"SIM",
"TCH",
"UP",
"W",
"PERF",
"ANN",
]
ignore = [
"F401",
"F402",
"F403",
"F405",
"PERF203",
"RUF001",
"RUF009",
"SIM105",
"UP034",
"UP038",
"UP007",
"ANN101",
"ANN102",
"ANN401",
"G004",
"G003",
]
[tool.ruff.lint.isort]
split-on-trailing-comma = false
combine-as-imports = true
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
parametrize-names-type = "tuple"
[tool.pyright]
useLibraryCodeForTypes = true
typeCheckingMode = "basic"
pythonVersion = "3.11"
reportIncompatibleMethodOverride = false