s3downloader/pyproject.toml
Kumi 9aa89f0dc9
Update contact information and author name
- Update the contact email address in the LICENSE file with the support email address from Kumi Systems e.U.

- Update the author name and email address in the pyproject.toml file with the support email address from Kumi Systems e.U.
2023-09-06 12:11:57 +02:00

29 lines
724 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "s3downloader"
version = "0.1.0"
authors = [
{ name="Kumi Systems e.U.", email="support@kumi.support" },
]
description = "Simple Python CLI tool to download files from S3"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"boto3",
]
[project.urls]
"Homepage" = "https://kumig.it/kumitterer/s3downloader"
"Bug Tracker" = "https://kumig.it/kumitterer/s3downloader/issues"
[project.scripts]
s3downloader = "s3downloader.__main__:main"