-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (61 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
73 lines (61 loc) · 1.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
# Code generated by smithy-python-codegen DO NOT EDIT.
[project]
name = "aws_sdk_bedrock_runtime"
version = "0.2.0"
description = "aws_sdk_bedrock_runtime client"
readme = "README.md"
requires-python = ">=3.12"
keywords = ["smithy", "aws_sdk_bedrock_runtime"]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
dependencies = [
"smithy_aws_core[eventstream, json]~=0.2.0",
"smithy_core~=0.2.0",
"smithy_http[awscrt]~=0.3.0"
]
[dependency-groups]
test = [
"pytest>=7.2.0,<8.0.0",
"pytest-asyncio>=0.20.3,<0.21.0"
]
docs = [
"pydata-sphinx-theme>=0.16.1",
"sphinx>=8.2.3"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.bdist]
exclude = [
"tests",
"docs",
]
[tool.pyright]
typeCheckingMode = "strict"
reportPrivateUsage = false
reportUnusedFunction = false
reportUnusedVariable = false
reportUnnecessaryComparison = false
reportUnusedClass = false
enableExperimentalFeatures = true
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
ignore = ["F841"]
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.pytest.ini_options]
python_classes = ["!Test"]
asyncio_mode = "auto"