forked from hlf20010508/miniopy-async
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.5 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
[project]
name = "miniopy-async"
version = "1.22.1"
description = "Asynchronous MinIO Client SDK for Python"
authors = [
{ name = "L-ING", email = "hlf01@icloud.com" },
{ name = "Huseyn Mashadiyev", email = "mashadiyev.huseyn@gmail.com" },
{ name = "MinIO, Inc." },
]
requires-python = "~=3.10"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"aiohttp>=3.11.14,<4",
"aiofile>=3.9.0,<4",
"certifi>=2025.1.31,<2026",
"aiohttp-retry>=2.9.1,<3",
"argon2-cffi>=23.1.0,<24",
"pycryptodome>=3.22.0,<4",
]
[project.urls]
Homepage = "https://github.com/hlf20010508/miniopy-async"
Repository = "https://github.com/hlf20010508/miniopy-async"
Documentation = "https://hlf20010508.github.io/miniopy-async/"
[dependency-groups]
dev = [
"sanic>=24.12.0,<25",
"sanic-jinja2>=2022.11.11,<2023",
"sphinx==8.1.3",
"sphinx-rtd-theme>=3.0.2,<4",
]
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
typeCheckingMode = "standard"
reportUnusedImport = "warning"
reportUnusedVariable = "warning"
reportDuplicateImport = "warning"
reportDeprecated = "warning"
reportPrivateImportUsage = "none"
[tool.isort]
profile = "black"