-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (77 loc) · 2.21 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (77 loc) · 2.21 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "aiohttp-s3-client"
version = "1.0.0"
description = "The simple module for putting and getting object from Amazon S3 compatible endpoints"
authors = [
{ name = "Dmitry Orlov", email = "me@mosquito.su" },
{ name = "Yuri Shikanov", email = "dizballanze@gmail.com" },
{ name = "Alexander Vasin", email = "hi@alvass.in" },
]
requires-python = ">=3.11,<4"
readme = "README.md"
license = "Apache-2.0"
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 :: Implementation :: CPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"aiohttp>=3.8,<4",
"aws-request-signer==1.2.0",
]
[project.urls]
Homepage = "https://github.com/aiokitchen/aiohttp-s3-client"
Source = "https://github.com/aiokitchen/aiohttp-s3-client"
Tracker = "https://github.com/aiokitchen/aiohttp-s3-client/issues"
[dependency-groups]
dev = [
"aiomisc-pytest",
"coverage",
"coveralls",
"freezegun",
"mypy",
"pytest",
"pytest-aiohttp",
"pytest-cov",
"pytest-timeout",
"ruff",
"yarl",
]
[tool.uv]
[tool.uv.build-backend]
module-name = ["aiohttp_s3_client"]
module-root = ""
[build-system]
requires = ["uv_build>=0.9.13,<0.10.0"]
build-backend = "uv_build"
[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.ruff]
line-length = 80
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "C90"]
[tool.ruff.lint.mccabe]
max-complexity = 15