forked from HENNGE/aiodynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (61 loc) · 1.6 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
[tool.poetry]
name = "aiodynamo"
version = "22.9"
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.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"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.7"
httpx = {version = ">=0.15.0 <1.0.0", optional = true}
aiohttp = {version = "^3.6.2", optional = true}
yarl = "^1.4.2"
typing_extensions = { version = "^3.7", python = "< 3.8" }
[tool.poetry.extras]
httpx = ["httpx"]
aiohttp = ["aiohttp"]
[tool.poetry.dev-dependencies]
pytest = "^6.0"
pytest-asyncio = "^0.17"
pytest-cov = "^2.6"
black = "^22.3"
sphinx = "^4.3"
pyperf = "^2.0"
boto3 = "^1.12.18"
freezegun = "^1.0"
mypy = "^0.971"
pyfakefs = "^4.3.2"
isort = "^5.8.0"
types-freezegun = "^1.1.6"
[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/",
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"