-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpyproject.toml
97 lines (89 loc) · 2.32 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[tool.poetry]
name = "asgi-correlation-id"
version = "4.3.4"
description = "Middleware correlating project logs to individual requests"
authors = ["Sondre Lillebø Gundersen <sondrelg@live.no>"]
maintainers = ["Jonas Krüger Svensson <jonas-ks@hotmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/snok/asgi-correlation-id"
repository = "https://github.com/snok/asgi-correlation-id"
keywords = [
'asgi',
'fastapi',
'starlette',
'async',
'correlation',
'correlation-id',
'request-id',
'x-request-id',
'tracing',
'logging',
'middleware',
'sentry',
'celery'
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
packages = [
{ include = "asgi_correlation_id" },
]
[tool.poetry.dependencies]
python = "^3.8"
starlette = ">=0.18"
packaging = "*"
celery = { version = '*', optional = true }
[tool.poetry.dev-dependencies]
pre-commit = "*"
pytest = "*"
pytest-mock = "*"
sentry-sdk = "*"
pytest-asyncio = "*"
fastapi = "*"
httpx = "*"
coverage = [
{ extras = ["toml"], version = "^6", python = ">=3.10" },
{ version = "^5 || ^6" },
]
requests = "*"
websockets = "*"
pytest-celery = "*"
[tool.poetry.extras]
celery = ['celery']
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
quiet = true
line-length = 120
skip-string-normalization = true
preview = true
[tool.isort]
profile = "black"
line_length = 120
[tool.coverage.run]
omit = []
[tool.coverage.report]
show_missing = true
skip_covered = true
exclude_lines = [
"if TYPE_CHECKING:",
"pragma: no cover",
]