-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (37 loc) · 943 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "griptape-aws"
version = "0.1.0"
description = "A Griptape plugin for AWS."
authors = ["Hello Griptape <[email protected]>"]
readme = "README.md"
packages = [
{include = "griptape"}
]
[tool.poetry.dependencies]
python = "^3.10"
griptape = "^1.0.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^8.3.1"
pytest-mock = "^3.1.4"
moto = "^5.0.21"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.0"
pyright = "^1.1.376"
pre-commit = "^4.0.0"
typos = "^1.22.9"
boto3-stubs = {extras = ["bedrock", "iam", "opensearch", "s3", "sagemaker", "sqs", "iot-data", "dynamodb", "redshift-data", "pricing"], version = "^1.34.105"}
[tool.pyright]
venvPath = "."
venv = ".venv"
include = ["griptape"]
exclude = [
"**/__pycache__",
]
pythonVersion = "3.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"