-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
89 lines (79 loc) · 2.49 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
84
85
86
87
88
[tool.poetry]
name = "aiohttp-s3-client"
# Dummy version which will be rewritten with poem-plugins
version = "0.8.16"
description = "The simple module for putting and getting object from Amazon S3 compatible endpoints"
authors = [
"Dmitry Orlov <[email protected]>",
"Yuri Shikanov <[email protected]>",
"Alexander Vasin <[email protected]>"
]
license = "Apache Software License"
readme = "README.md"
homepage = "https://github.com/aiokitchen/aiohttp-s3-client"
packages = [{ include = "aiohttp_s3_client" }]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.urls]
"Source" = "https://github.com/aiokitchen/aiohttp-s3-client"
"Tracker" = "https://github.com/aiokitchen/aiohttp-s3-client/issues"
[tool.poetry.dependencies]
aiohttp = "^3.8"
aiomisc = "^17.3.4"
aws-request-signer = "1.2.0"
typing_extensions = [{ version = '*', python = "< 3.10" }]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
aiomisc-pytest = "^1.1"
coverage = "!=4.3"
coveralls = "^3.3.1"
mypy = "*"
pylama = { extras = ["toml"], version = "^8.4.1" }
pytest-cov = "^4.0.0"
pytest-timeout = "^2.1.0"
tox = "^4.4.6"
freezegun = "^1.5.0"
pytest = "^7.4.4"
setuptools = "^69.5.1"
pytest-aiohttp = "^1.0.5"
yarl = "^1.9.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poem-plugins.version]
provider = "git"
update_pyproject = true
write_version_file = true
[tool.mypy]
check_untyped_defs = true
follow_imports = "silent"
ignore_missing_imports = true
no_implicit_reexport = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unused_configs = true
files = ["aiohttp_s3_client", "tests"]
[tool.pylama]
max_line_length = 80
skip = ".venv*,.*cache,dist"
[tool.pylama.linter.mccabe]
max-complexity = 15