-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 799 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 799 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "aws-log-ingestion"
version = "2.10.0"
description = ""
authors = ["New Relic <serverless@newrelic.com>"]
license = "Apache 2.0"
package-mode= false
[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "^3.13.2"
[tool.poetry.group.dev.dependencies]
aws-sam-cli = "^1.118.0"
black = "^24.3.0"
boto3 = "^1.19.2"
coverage = "^6.0.2"
flake8 = "^7.0.0"
mock = "^4.0.3"
pytest = "^7.2.0"
pytest-asyncio = "^0.16.0"
pyyaml = "!=5.4.1, !=5.4.0" # pyyaml is broken with cython 3
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''