-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 1.05 KB
/
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
45
46
47
48
49
[tool.poetry]
name = "raktar-infrastructure"
version = "0.1.0"
description = "Raktar backend stack"
authors = ["David Steiner <david_j_steiner@yahoo.co.nz>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
black = "22.10.0"
pre-commit = "^2.20.0"
pytest = "^7.2.0"
ruff = "^0.0.261"
[tool.poetry.group.infrastructure.dependencies]
aws-cdk-lib = "^2.73.0"
aws-cdk-aws-apigatewayv2-alpha = "^2.73.0a0"
aws-cdk-aws-apigatewayv2-integrations-alpha = "^2.73.0a0"
aws-cdk-aws-apigatewayv2-authorizers-alpha = "^2.73.0a0"
pydantic = { version = "^1.10.7", extras = ["dotenv"] }
ziglang = "^0.10.0.post1"
[tool.ruff]
select = ["A", "B", "D", "E", "F", "N"]
ignore = [
"D203",
"D213",
"E501",
]
exclude = [
"application",
".venv",
"cdk.out",
".git",
".ruff_cache",
"infrastructure/custom_resources/*"
]
[tool.mypy]
ignore_missing_imports = false
disallow_untyped_defs = true
explicit_package_bases = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"