-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.55 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "aws_list_all"
authors = [
{name = "Johannes Ebke", email = "[email protected]"}
]
description = "List all your AWS resources, all regions, all services."
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["aws", "boto3", "listings", "resources", "region", "services"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"importlib_resources",
"boto3>=1.29.4",
"app_json_file_cache>=1.0.1",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/JohannesEbke/aws_list_all"
Repository = "https://github.com/JohannesEbke/aws_list_all.git"
Issues = "https://github.com/JohannesEbke/aws_list_all/issues"
[project.scripts]
aws_list_all = "aws_list_all.__main__:main"
aws-list-all = "aws_list_all.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "app_json_file_cache.__version__"}