-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
47 lines (39 loc) · 935 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
45
46
47
[tool.poetry]
name = "aws-log-parser"
version = "3.0.2"
description = "Parse AWS CloudFront and LoadBalancer logs into Python dataclasses."
authors = ["Derrick Petzold <[email protected]>"]
license = "Apache"
readme = "README.md"
packages = [{include = "aws_log_parser"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
boto3 = "^1.35.88"
dataclasses-json = "^0.6.7"
[tool.poetry.group.dev.dependencies]
pytest-cov = "^6.0.0"
pytest-socket = "^0.7.0"
pytest-datadir = "^1.5.0"
pyright = "^1.1.391"
ruff = "^0.8.4"
pytest = "^8.3.4"
tox = "^4.23.2"
twine = "^6.0.1"
[tool.poetry.group.cli.dependencies]
rich = "^13.9.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = [
"aws_log_parser",
"test",
]
exclude = [
"**/__pycache__",
"**/.eggs"
]
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.13"
pythonPlatform = "Linux"