-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 804 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (29 loc) · 804 Bytes
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
[project]
name = "s3-client"
description = "Sample python script to work with Amazon S3."
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version", "dependencies"]
requires-python = ">=3.7"
authors = [
{name = "Thobias Salazar Trevisan"},
]
[project.scripts]
s3-client = "s3_client.main:main"
[project.urls]
"Homepage" = "https://github.com/thobiast/s3_client"
"Source" = "https://github.com/thobiast/s3_client"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["s3_client"]
[tool.setuptools.dynamic]
version = {attr = "s3_client.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 88
[tool.pylint.main]
max-line-length = 88
ignore-paths = ["tests/"]
disable = ["W0718"]