-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.4 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
[project]
name = "derailed-credentials"
version = "0.4.3"
description = "Python equivalent of Rails credentials system"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.txt" }
authors = [{ name = "Paolo D'Apice", email = "dapicester@gmail.com" }]
keywords = ["credentials", "encryption", "cli"]
dependencies = [
"addict>=2.4.0",
"click>=8.2.1",
"cryptography",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/dapicester/derailed-credentials/"
Repository = "https://github.com/dapicester/derailed-credentials/"
[project.scripts]
derailed = "derailed.cli:derailed"
[dependency-groups]
dev = [
"pytest-cov>=6.3.0",
"pytest>=8.4.2",
"pytest-mock>=3.15.0",
"pytest-xdist>=3.8.0",
"pytest-benchmark>=5.1.0",
"coverage>=7.10.6",
"mypy>=1.17.1",
"types-pyyaml>=6.0.12.20250822",
"ipdb>=0.13.13",
"pytest-watch>=4.2.0",
"pytest-notifier>=1.0.4",
"pytest-subprocess>=1.5.3",
"ruff>=0.12.12",
"pre-commit>=4.3.0",
]
[tool.uv]
required-version = ">= 0.6.15" # make sure upload_time is included to avoid churn (see https://github.com/dependabot/dependabot-core/issues/12127)
[tool.mypy]
files = [
"derailed/"
]
[[tool.mypy.overrides]]
module = ["addict.*"]
follow_untyped_imports = true
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["derailed"]