-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 780 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 780 Bytes
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
[tool.poetry]
name = "battle-python"
version = "0.1.0"
description = "A Serverless Battlesnakes API"
authors = ["zanebclark <zanebclark@gmail.com>"]
readme = "README.md"
packages = [{include = "battle_python", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
aws-lambda-powertools = {extras = ["tracer", "validation"], version = "^2.30.2"}
pydantic = "^2.5.3"
numpy = "^1.26.4"
[tool.poetry.group.dev.dependencies]
aws_xray_sdk = "*"
aws-lambda-powertools = {extras = ["aws-sdk"], version = "^2.30.2"}
black = {extras = ["d"], version = "^23.12.1"}
click = "^8.1.7"
poetry-plugin-export = "^1.6.0"
pre-commit = "^3.6.0"
pytest = "^7.4.3"
coverage = "^7.4.1"
python-dotenv = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"