-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (28 loc) · 854 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (28 loc) · 854 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cloud-starter"
description = "Learning project: minimal spin CLI with up|status|down (dry-run by default; live only with interlock)."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Marius Trovik" }]
keywords = ["cli", "aws", "learning", "cloud"]
# Boto is needed at import time because the CLI imports the aws module.
dependencies = ["boto3>=1.34", "botocore>=1.34"]
# Version comes from code
dynamic = ["version"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
cloud_starter = []
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
spin = "cloud_starter.cli:main"
[project.optional-dependencies]
test = [
"pytest>=8",
"moto[boto3]>=5"
]