-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (28 loc) · 935 Bytes
/
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
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project]
name = "aios3"
description = "Wrapper for aiobotocore to simplify reading of large files"
readme = "README.md"
keywords = [ "asyncio", "boto3", "botocore", "s3", "aws",]
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",]
requires-python = ">=3.10"
dependencies = [ "aiobotocore", "multidict>=6.0.5",]
dynamic = [ "version",]
[[project.authors]]
name = "Andrey Sorokin"
email = "andrey@sorokin.engineer"
[project.license]
file = "LICENSE.txt"
[project.urls]
Homepage = "https://andgineer.github.io/aios3/"
documentation = "https://andgineer.github.io/aios3/"
[tool.setuptools]
packages = "find:"
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.manifest]
include = [ "README.md", "LICENSE.txt",]
[tool.hatch.version]
path = "src/aios3/__about__.py"