-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) · 2.33 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (77 loc) · 2.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=77", "setuptools-scm>=9,<10", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lockersm"
dynamic = ["version"]
description = "Official Locker Secrets Python SDK"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [
{name = "CyStack", email = "contact@locker.io"},
]
keywords = ["locker", "secrets", "passwords", "security"]
dependencies = [
"cryptography>=44.0.0",
"requests>=2.32.0,<3",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://locker.io"
Documentation = "https://pypi.org/project/lockersm/"
Support = "https://support.locker.io"
Source = "https://git.cystack.org/locker/secrets-sdk/python"
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
fallback_version = "2.0.0"
version_file = "locker/_version.py"
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
tag_regex = "^v(?P<version>(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*))$"
[tool.setuptools.packages.find]
include = ["locker", "locker.*"]
exclude = ["tests", "tests.*", "examples", "examples.*"]
[tool.setuptools.package-data]
locker = ["__about__.json", "data/*.json", "locker-cli-release.json", "py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--strict-markers"]
markers = [
"integration: requires an explicit real Locker CLI and vault credentials",
]
[tool.coverage.run]
branch = true
source = ["locker"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
no_implicit_optional = true
ignore_missing_imports = true
warn_redundant_casts = true
warn_unused_ignores = true
exclude = ["tests/integration"]