-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpyproject.toml
87 lines (77 loc) · 1.9 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
[project]
name = "aioboto3"
description = "Async boto3 wrapper"
authors = [
{name = "Terri Cain", email = "terri@dolphincorp.co.uk"},
]
license = {text = "Apache-2.0"}
requires-python = "<4.0,>=3.8"
dependencies = [
"aiobotocore[boto3]==2.20.0",
"aiofiles>=23.2.1",
]
readme = "README.rst"
keywords = [
"aioboto3",
"boto3",
"aws",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/terricain/aioboto3"
repository = "https://github.com/terricain/aioboto3"
documentation = "https://readthedocs.org/projects/aioboto3/"
[project.optional-dependencies]
s3cse = [
"cryptography>=44.0.1",
]
chalice = [
"chalice>=1.24.0",
]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"flake8",
"dill",
"pygithub",
"requests",
"aiofiles",
"moto[server]",
"chalice<2.0.0,>=1.24.0",
"pytest-asyncio<1.0.0,>=0.19.0",
]
docs = [
"sphinx",
"sphinx-rtd-theme<2.0.0,>=1.3.0rc1",
"sphinx-autodoc-typehints",
]
[tool.uv]
default-groups = [
"docs",
"dev",
]
required-version = ">=0.6.1"
cache-keys = [{ file = "pyproject.toml" }, { git = { commit = true, tags = true } }]
[build-system]
requires = ["setuptools>=68.2.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
readme = { file = ["README.rst", "CHANGELOG.rst"] }
[tool.setuptools.packages.find]
include = ["aioboto3*"]
[tool.setuptools_scm]
version_file = "aioboto3/_version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]