-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 972 Bytes
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 972 Bytes
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
[project]
name = "syntactic-cache"
version = "1.1.0"
description = "Syntactic cached property generator for classes."
readme = "README.md"
requires-python = ">=3"
dependencies = []
license = {text = "MIT"}
authors = [{ name = "Leo Turnell-Ritson", email = "l.turnell.ritson@gmail.com" }]
[project.urls]
Repository = "https://github.com/LeoTurnell-Ritson/syntactic-cache"
[project.optional-dependencies]
dev = [
"ruff",
]
test = [
"coverage",
]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88
preview = true
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"I", # Isort
"D", # pydocstyle
"DOC", # docstrings
"B", # Python bugbear
"N", # Naming conventions
]
ignore = [
"D100", # Ignore missing module docstring
"D104", # Ignore missing docstring in __init__.py
"D107", # Ignore missing docstring in __init__ method
]
[tool.ruff.lint.pydocstyle]
convention = "google"