-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (47 loc) · 853 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "tk-readme-generator"
description = "CLI README.md generator for ShotGrid frameworks/engines/apps."
version = "1.0.0"
dependencies = [
"pyyaml",
]
requires-python = ">=3.4"
authors = [
{name = "Max de Groot", email = "max@maximumfx.nl"},
]
readme = "README.md"
keywords = ["shotgrid", "shotgun", "readme", "cli"]
[project.urls]
Repository = "https://github.com/MaximumFX/tk-readme-generator.git"
Issues = "https://github.com/MaximumFX/tk-readme-generator/issues"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.ruff]
extend-select = [
"B",
"BLE",
"C4",
"ERA",
"I",
"ICN",
"INP",
"ISC",
"N",
"NPY",
"PGH",
"PIE",
"Q",
"RET",
"RSE",
"RUF",
"S",
"SIM",
"T20",
"TCH",
"TID",
"YTT",
]
show-fixes = true
target-version = "py39"