-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
63 lines (57 loc) · 1.11 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
[project]
name = "aiodynamo"
version = "24.7"
description = "Asyncio DynamoDB client"
authors = [{ name = "Jonas Obrist", email = "jonas.obrist@hennge.com" }]
requires-python = ">=3.10"
dependencies = [
"yarl>=1.4.2",
]
[project.optional-dependencies]
httpx = [
"httpx>=0.15.0,<1.0.0",
]
aiohttp = [
"aiohttp>=3.6.2",
]
[dependency-groups]
dev = [
"aiohttp>=3.6.2",
"black>=22.3",
"boto3>=1.12.18",
"freezegun>=1.0",
"furo>=2023.9.10",
"httpx>=0.15.0,<1.0.0",
"isort>=5.8.0",
"mypy>=1.5.1",
"pyfakefs>=5.3.0",
"pyperf>=2.0",
"pytest>=7.0",
"pytest-asyncio>=0.17",
"pytest-cov>=2.6",
"pytest-xdist>=3.6.1",
"ruff>=0.0.292",
"sphinx>=7",
"types-freezegun>=1.1.6",
"urllib3<1.27",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = "tests"
[tool.mypy]
strict = true
files = [
"src/",
"tests/",
]
[tool.ruff.lint]
ignore = [
"E722", # Do not use bare `except`
"E501", # Line too long (104 > 88 characters)
]
select = [
"E", "F", "T201", "I"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"