-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 842 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 842 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
37
38
39
40
41
[project]
name = "aws-management"
version = "0.0.1"
description = "AWS Management Tools"
requires-python = ">=3.11"
license = {file = "LICENSE"}
authors = [
{ name = "Matt Austin", email = "matt@mattaust.in" }
]
keywords = ["aws"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: AWS CDK",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
"Typing :: Typed"
]
dependencies = [
"boto3",
"click",
"tqdm"
]
[project.scripts]
aws-manage = "aws_management.__main__:cli"
[project.urls]
Repository = "https://github.com/maafy6/aws-management"
[build-system]
requires = ["setuptools"]
[tool.ruff]
select = ["E", "W", "F", "I", "C", "B"]
line-length = 88
[tool.setuptools]
packages = ["aws_management"]