-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
125 lines (109 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
125 lines (109 loc) · 2.63 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["hatchling", "babel>=2.0"]
build-backend = "hatchling.build"
[tool.hatch.build.hooks.custom]
path = "hatch_build.py"
[tool.hatch.build.targets.wheel]
# Include compiled .mo catalogues even though *.mo is listed in .gitignore.
artifacts = ["src/opkssh_wrapper/locale/**/*.mo"]
[tool.hatch.build.targets.sdist]
artifacts = ["src/opkssh_wrapper/locale/**/*.mo"]
[project]
name = "opkssh-wrapper"
version = "0.1.0"
description = "A thin shim that transparently injects opkssh into SSH workflows"
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = ">=3.10"
authors = [
{name = "Rebecca C. Murphy", email = "rebecca@rcm.dev"},
]
keywords = ["ssh", "opkssh", "openid", "oidc", "authentication"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Networking",
"Typing :: Typed",
]
dependencies = [
"tomli>=1.0; python_version < '3.11'",
]
[project.urls]
Homepage = "https://github.com/rcmurphy/opkssh-wrapper"
Repository = "https://github.com/rcmurphy/opkssh-wrapper"
Issues = "https://github.com/rcmurphy/opkssh-wrapper/issues"
[project.scripts]
opkssh-wrapper = "opkssh_wrapper.main:main"
[project.optional-dependencies]
lint = [
"ruff>=0.4",
"mypy>=1.10",
"pyright>=1.1",
"bandit>=1.7",
]
test = [
"pytest>=7.0",
"pytest-cov>=4.0",
"hypothesis>=6.0",
]
build = [
"build>=1.0",
"twine>=5.0",
"babel>=2.0",
]
nuitka = [
"nuitka>=2.0",
"ordered-set>=4.0",
"zstandard>=0.20",
]
audit = [
"pip-audit>=2.0",
"safety>=3.0",
"pip-licenses>=4.0",
]
dev = [
"opkssh-wrapper[lint,test,build,audit]",
]
[tool.ruff]
target-version = "py310"
line-length = 88
[tool.ruff.lint]
select = [
"E", "W",
"F",
"I",
"N",
"UP",
"B",
"S",
"T20",
"SIM",
"TCH",
"RUF",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101", "S108"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_unused_configs = true
mypy_path = "typings"
[tool.pyright]
pythonVersion = "3.10"
typeCheckingMode = "strict"
[tool.bandit]
skips = ["B603", "B404", "B606"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["opkssh_wrapper"]
[tool.coverage.report]
show_missing = true