-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
83 lines (75 loc) · 1.88 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
[tool.poetry]
name = "aiodynamo"
version = "24.7"
description = "Asyncio DynamoDB client"
authors = ["Jonas Obrist <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/HENNGE/aiodynamo"
documentation = "https://aiodynamo.readthedocs.io"
classifiers = [
"Framework :: AsyncIO",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
"License :: OSI Approved :: Apache Software License",
]
readme = "readme.md"
homepage = "https://github.com/HENNGE/aiodynamo"
keywords = ["dynamodb", "asyncio", "aws"]
[tool.poetry.dependencies]
python = "^3.8"
httpx = {version = ">=0.15.0 <1.0.0", optional = true}
aiohttp = {version = "^3.6.2", optional = true}
yarl = "^1.4.2"
[tool.poetry.extras]
httpx = ["httpx"]
aiohttp = ["aiohttp"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
pytest-asyncio = "^0.17"
pytest-cov = "^2.6"
black = "^22.3"
sphinx = "^7"
pyperf = "^2.0"
boto3 = "^1.12.18"
freezegun = "^1.0"
mypy = "^1.5.1"
pyfakefs = "^5.3.0"
isort = "^5.8.0"
types-freezegun = "^1.1.6"
urllib3 = "< 1.27"
furo = "^2023.9.10"
ruff = "^0.0.292"
httpx = ">=0.15.0 <1.0.0"
aiohttp = "^3.6.2"
pytest-xdist = "^3.6.1"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = "tests"
[tool.isort]
line_length = "88"
multi_line_output = "3"
combine_as_imports = "1"
include_trailing_comma = "True"
known_first_party = "aiodynamo"
[tool.mypy]
strict = true
files = [
"src/",
"tests/",
]
[tool.ruff]
ignore = [
"E722", # Do not use bare `except`
"E501", # Line too long (104 > 88 characters)
]
select = [
"E", "F", "T201",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"