-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 973 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
36
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ye3sld"
version = "1.0.4"
dependencies = [
"boto3",
]
requires-python = ">=3.8"
authors = [
{ name="palw3ey", email="palw3ey@gmail.com" },
]
maintainers = [
{name = "palw3ey", email = "palw3ey@gmail.com"}
]
description = "Create an html file that shows the directory listing structure of an s3 bucket."
readme = "README.md"
license = {text = "MIT License"}
keywords = ["s3", "bucket", "html", "directory", "tree"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/palw3ey/ye3sld"
Documentation = "https://github.com/palw3ey/ye3sld"
Repository = "https://github.com/palw3ey/ye3sld.git"
[project.scripts]
ye3sld = "ye3sld.ye3sld:main"