-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.7 KB
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "logging-http-client"
version = "2.32.3.9"
description = "A logging library built on top of the requests library to provide a familiar interface for sending HTTP requests with observability features out-of-the-box."
authors = ["u-ways <work@u-ways.info>"]
packages = [{ include = "logging_http_client", from = "." }]
readme = "README.md"
license = "MIT"
package-mode = true
homepage = "https://github.com/u-ways/logging-http-client"
documentation = "https://github.com/u-ways/logging-http-client/blob/main/README.md"
repository = "https://github.com/u-ways/logging-http-client"
keywords = ["logging", "http", "client", "requests"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Topic :: System :: Logging",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.32.3"
[tool.poetry.group.dev.dependencies]
black = "^24.4.0"
flake8 = "^7.1.0"
flake8-pyproject = "^1.2.3"
pyclean = "^3.0.0"
rich = "^13.7.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
pytest-mock = "^3.14.0"
pytest-env = "^1.1.3"
testcontainers = "^4.7.1"
wiremock= "^2.6.1"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocstrings = "^0.27.0"
mkdocs-material = "^9.5.44"
[tool.black]
line-length = 120
[tool.flake8]
max-line-length = 120
count = true
[tool.pytest.ini_options]
pythonpath = "logging_http_client tests"
testpaths = "tests"
env = [
"LOG_LEVEL=DEBUG",
]