-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 904 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 904 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
[project]
name = "genericache"
authors = [{ name = "Tomaz Vieira", email = "tom.fogaca@gmail.com" }]
maintainers = [{ name = "Tomaz Vieira", email = "tom.fogaca@gmail.com" }]
license = "MIT"
license-files = ["LICENSE"]
version = "0.5.2"
description = "A thread-safe, process-safe cache for slow data fetching operations"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"filelock>=3.16.1",
]
[dependency-groups]
dev = [
"black>=24.8.0",
"httpx>=0.28.1",
"ruff>=0.12.8",
]
[project.urls]
Repository = "https://github.com/Tomaz-Vieira/genericache"
Home-page = "https://github.com/Tomaz-Vieira/genericache"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
preview = true
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = [
# allow `x != True` because `not x` booleanizes everything
"E712",
]