-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (50 loc) · 1.32 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "cloudbender"
dynamic = ["version"]
authors = [
{ name="Stefan Reimer", email="stefan@zero-downtime.net" },
]
description = "Deploy and maintain infrastructure in automated and trackable manner"
readme = "README.md"
license = "AGPL-3.0-or-later"
requires-python = ">=3.12"
dependencies = [
"boto3==1.35.46",
"mock==5.1.0",
"Jinja2==3.1.4",
"click==8.1.7",
"pexpect==4.9.0",
"python-minifier==2.11.2",
"cfn-lint==1.12.4",
"ruamel.yaml==0.18.6",
"pulumi==3.137.0",
"pulumi-aws==6.56.1",
"pulumi-aws-native==1.3.0",
"pulumi-policy==1.13.0",
"pulumi-command==1.0.1",
"pulumi_random==4.16.6",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: POSIX",
"Programming Language :: Python",
"License :: OSI Approved :: GNU Affero General Public License v3",
]
[project.optional-dependencies]
tests = [
'flake',
'pytest',
'twine',
]
[project.urls]
"Homepage" = "https://git.zero-downtime.net/ZeroDownTime/CloudBender"
[project.scripts]
cloudbender = "cloudbender.cli:cli"
[tool.hatch.version]
source = "vcs"
[tool.isort]
profile = "black"