-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
82 lines (72 loc) · 1.94 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
[project]
name = "1password-cli"
version = "0.0.1"
description = "Python wrapper around the 1Password CLI with Pydantic Settings integration"
authors = [
{ name = "Zac Scott", email = "zac@zacscott.net" }
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11,<4.0"
keywords = ["1password", "cli", "secrets", "pydantic", "settings"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/scottzach1/1Password-Python"
Repository = "https://github.com/scottzach1/1Password-Python"
Issues = "https://github.com/scottzach1/1Password-Python/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/scottzach1"]
[dependency-groups]
dev = [
"ruff>=0.9.6",
"pytest>=8.3.4",
"coverage>=7.6.12",
"pre-commit>=4.1.0",
"pip-audit>=2.8.0",
"anybadge>=1.16.0",
"pytest-mock>=3.14.0",
]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I"]
ignore = ["B008"]
[tool.ruff.lint.isort]
known-first-party = ["scottzach1"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
addopts = [
"-v",
"--strict-markers",
"--log-cli-level=INFO",
]
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
]
[tool.coverage.run]
source = ["src"]
omit = ["tests/*"]
[tool.coverage.report]
precision = 2
show_missing = true
skip_covered = false