-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 738 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 738 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
[project]
name = "encrypted-cache"
version = "0.1.0"
description = "Password-based encrypted local cache (Fernet / PBKDF2-HMAC-SHA256) with cleartext metadata envelopes and TTL-based cache invalidation."
requires-python = ">=3.12.0"
license = "Apache-2.0"
authors = [
{ name = "@drakee" },
]
dependencies = [
"cryptography>=46.0.4",
"pylint>=4.0.5",
]
[project.urls]
Repository = "https://github.com/akeedev/encrypted-cache"
[dependency-groups]
dev = [
"mypy>=1.11",
"pytest>=9.0",
"ruff>=0.15",
"ipykernel>=7.2.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]