-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.21 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "stackedup"
version = "0.3.1"
authors = [
{ name="OMBU", email="martin@ombuweb.com" },
]
description="Tooling to help manage CloudFormation stacks"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"boto3>=1.34.53",
"tabulate>=0.9.0",
"PyYAML>=6.0.1",
"awscliv2",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"bandit",
"coverage",
"pre-commit",
"pytest",
"ruff",
]
publish = [
"build==1.4.0",
"twine==6.2.0",
]
[project.urls]
Homepage = "https://github.com/ombu/stacks"
[project.scripts]
assume-role = "stacks.commands.assume_role:run"
stack-launch = "stacks.commands.stack_launch:run"
stack-update = "stacks.commands.stack_update:run"
stack-details = "stacks.commands.stack_details:run"
container-shell = "stacks.commands.container_shell:run"
database-shell = "stacks.commands.database_shell:run"
[tool.hatch.build]
exclude = ['/Makefile', '/.*']
[tool.hatch.build.targets.wheel]
packages = ["src/stacks"]
[tool.ruff]
line-length = 110