-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 757 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (36 loc) · 757 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
[project]
name = "stands-engine"
version = "0.2.0"
description = "stands engine"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"mako==1.3.12",
"paramiko==4.0.0",
"pulumi==3.255.0",
"pulumi-hcloud==1.41.0",
"pydantic==2.13.4",
"pydantic-settings==2.14.2",
"pyyaml==6.0.3",
"pyinfra==3.10.0",
"python-box==7.4.1",
]
[project.scripts]
stands-engine = "main:cli"
[build-system]
requires = ["setuptools>=83"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["main"]
[tool.setuptools.packages.find]
where = ["."]
include = [
"App*",
"config*",
"InfraBaseLib*",
"ManifestParser*",
"ShellCollect*",
"StandBuilder*",
"StandFramework*",
]
namespaces = true