-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.07 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
[build-system]
requires = ["setuptools>=40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "HANK_Caching"
authors = [
{name="HANK.ai", email="[email protected]"},
]
description = "Caching utilities for Python."
keywords = ["caching", "redis", "lru", "lru-cache", "cache", "hank", "hank.ai", "python"]
readme = {file="README.md", content-type="text/markdown"}
license = {text="MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8, <4"
dependencies = [
"cachetools>=4.2.2",
"redis>=2.10.6"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/hank-ai/HANK_Caching"
Issues = "https://github.com/hank-ai/HANK_Caching/issues"
[tool.pytest.ini_options]
testpaths = [
"tests"
]