-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 942 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
[tool.poetry]
name = "scout-apm-logging"
version = "1.0.0"
description = "Scout APM Python Logging Agent"
authors = ["Quinn Milionis <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
opentelemetry-api = "^1.26.0"
opentelemetry-sdk = "^1.26.0"
opentelemetry-exporter-otlp = "^1.26.0"
scout-apm = "^3.1.0"
[tool.poetry.group.dev.dependencies]
taskipy = "^1.13.0"
pytest = "^8.3.2"
coverage = "^7.6.1"
black = "^24.8.0"
pytest-cov = "^5.0.0"
flake8 = "^7.1.1"
flake8-black = "^0.3.6"
mypy = "^1.11.1"
flask = "^3.0.3"
[tool.taskipy.tasks]
test = "pytest . --cov-report=term-missing --cov=."
lint = "task flake8 && task mypy"
flake8 = "flake8 ."
black = "black ."
mypy = "poetry run mypy . --install-types --non-interactive --ignore-missing-imports"
format = "task black"
check = "task format && task lint && task test"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"