-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (55 loc) · 1.35 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
[project]
name = "loamy"
version = "0.0.10"
description = "This project allows you to execute a list of http operations asynchronously from within a synchronous context."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"aiodns>=3.2.0",
"aiohttp>=3.10.10",
"loguru>=0.7.2",
"pydantic>=2.9.2",
]
[project.optional-dependencies]
uvloop = [
"uvloop>=0.21.0",
]
[dependency-groups]
dev = [
"httpx>=0.27.2",
"mypy>=1.13.0",
"pip-audit>=2.7.3",
"pre-commit>=4.0.1",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"ruff>=0.7.3",
"uvicorn>=0.32.0",
"quart>=0.19.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
python-preference = "system"
python-downloads = "manual"
[tool.uv.pip]
strict = true
[tool.ruff]
extend-exclude = ["tests"]
line-length = 88
indent-width = 4
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "C90", "I", "N", "UP", "ASYNC", "S", "B", "ERA", "PLE", "PLW", "PERF", "RUF"]
ignore = ["E501"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"