-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (40 loc) · 1.22 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
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project]
name = "async-s3"
dynamic = [ "version",]
description = "S3 Bucket helper utils. Async list objects by folders."
keywords = [ "async", "aws", "s3", "bucket", "list-objects", "folders",]
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [ "click", "rich-click", "aiobotocore", "boto3",]
[[project.authors]]
name = "Andrey Sorokin"
email = "andrey@sorokin.engineer"
[project.license]
file = "LICENSE.txt"
[project.urls]
Homepage = "https://andgineer.github.io/async-s3/"
Documentation = "https://andgineer.github.io/async-s3/"
[project.scripts]
as3 = "async_s3.main:as3"
[tool.setuptools]
packages = "find:"
[tool.ruff]
line-length = 99
[tool.pyright]
venvPath = "."
venv = ".venv"
reportMissingImports = true
reportMissingModuleSource = false
reportMissingTypeStubs = true
include = [ "src",]
exclude = [ "**/node_modules", "**/__pycache__",]
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.manifest]
include = [ "README.md", "LICENSE.txt",]
[tool.hatch.version]
path = "src/async_s3/__about__.py"