-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.11 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
51
52
53
54
55
[project]
name = "forkache"
version = "0.0.1"
authors = [
{ name="Saul Cooperman", email="saulcoops@gmail.com" },
]
description = "A simple at-fork cache invalidation library"
readme = "README.md"
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICENSE"]
dependencies = []
[project.urls]
Homepage = "https://github.com/scopreon/forkache"
Issues = "https://github.com/scopreon/forkache/issues"
[build-system]
requires = ["uv_build >= 0.10.7, <0.11.0"]
build-backend = "uv_build"
[tool.mypy]
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = ["E", "F"]
[dependency-groups]
dev = []
lint = [
"mypy>=1.19.1",
"ruff>=0.15.5",
]
test = [
"cachetools>=7.0.3",
"pytest>=9.0.2",
]