-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
66 lines (63 loc) · 1.71 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "persist-cache"
version = "0.4.3"
authors = [
{name="Umar Butler", email="umar@umar.au"},
]
description = "An easy-to-use Python library for lightning-fast persistent function caching."
readme = "README.md"
requires-python = ">=3.9"
license = {text="MIT"}
keywords = [
"cache",
"caching",
"local",
"persistent",
"function",
"functions",
"decorator",
"memoization",
"memoisation",
"memoize",
"memoise",
"performance",
"optimization",
"optimisation",
"optimise",
"optimize",
"optimizing",
"optimising",
"speed",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"dill>=0.3.7",
"filelock>=3.13.1",
"msgspec>=0.18.6",
"xxhash>=3.4.1",
]
[project.urls]
Homepage = "https://github.com/umarbutler/persist-cache"
Documentation = "https://github.com/umarbutler/persist-cache/blob/main/README.md"
Issues = "https://github.com/umarbutler/persist-cache/issues"
Source = "https://github.com/umarbutler/persist-cache"
[tool.pytest.ini_options]
asyncio_mode = "auto"