-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 1.55 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "paramiko-cloud"
version = "1.3.2"
description = "Use cloud-managed keys to sign SSH certificates"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Jason Rigby", email = "hello@jasonrig.by" },
]
dependencies = [
"paramiko",
"cryptography",
"protobuf",
"grpcio-tools",
]
[project.optional-dependencies]
aws = ["boto3"]
gcp = ["google-cloud-kms"]
azure = ["azure-keyvault-keys", "azure-identity"]
all = [
"boto3",
"google-cloud-kms",
"azure-keyvault-keys",
"azure-identity",
]
[project.urls]
Homepage = "https://github.com/jasonrig/paramiko-cloud/"
[tool.setuptools]
include-package-data = true
packages = [
"paramiko_cloud",
"paramiko_cloud.dummy",
"paramiko_cloud.aws",
"paramiko_cloud.azure",
"paramiko_cloud.gcp",
"paramiko_cloud.protobuf",
]
[tool.setuptools.package-data]
paramiko_cloud = ["py.typed"]
"paramiko_cloud.protobuf" = ["*.pyi"]
[dependency-groups]
dev = ["pytest", "pytest-cov", "ruff", "mypy"]
build = ["build"]
docs = [
"sphinx",
"paramiko",
"cryptography",
"boto3",
"google-cloud-kms",
"azure-keyvault-keys",
"azure-identity",
"protobuf",
"grpcio-tools",
]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
exclude = "(^|/)test_.*\\.py$|(^|/)paramiko_cloud/protobuf/.*_pb2.*\\.py$"
disable_error_code = ["import-untyped"]
[[tool.mypy.overrides]]
module = ["paramiko_cloud.protobuf.*"]
ignore_errors = true
[tool.ruff]
target-version = "py310"