generated from akeedev/2026_ai_pycoding_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.26 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
56
57
58
59
60
[project]
name = "ciphercache"
version = "0.1.0"
description = "a local daemon providing secrets from a safe store"
requires-python = ">=3.12.0"
license = {file = "LICENSE"}
readme = "README.md"
authors = [{name = "@drakee"}]
keywords = ["secrets", "daemon", "keepassxc", "ipc"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS",
]
urls = {Homepage = "https://github.com/drakee/ciphercache"}
dependencies = [
"defusedxml>=0.7.1",
]
[tool.setuptools]
include-package-data = true
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
target-version = "py312"
line-length = 120
exclude = [
".git",
".venv",
"venv",
"build",
"dist",
"__pypackages__",
".mypy_cache",
".pytest_cache",
]
[tool.pytest.ini_options]
pythonpath = ["src"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ipykernel>=7.1.0",
"mypy>=1.11",
"ruff>=0.14.14",
"types-defusedxml>=0.7.0.20250822",
]
[project.scripts]
ciphercached = "ciphercache.daemon.runner:main"