2022-06-28 11:15:45 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling", "hatch-vcs"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "cloudbender"
|
|
|
|
dynamic = ["version"]
|
|
|
|
authors = [
|
|
|
|
{ name="Stefan Reimer", email="stefan@zero-downtime.net" },
|
|
|
|
]
|
2022-06-28 11:45:51 +00:00
|
|
|
description = "Deploy and maintain infrastructure in automated and trackable manner"
|
2022-06-28 11:15:45 +00:00
|
|
|
readme = "README.md"
|
2022-06-28 11:29:42 +00:00
|
|
|
license = "AGPL-3.0-or-later"
|
2022-09-26 13:57:11 +00:00
|
|
|
requires-python = ">=3.9"
|
2022-06-28 11:15:45 +00:00
|
|
|
dependencies = [
|
2024-11-20 03:01:24 +00:00
|
|
|
"boto3==1.35.65",
|
2023-11-21 11:17:59 +00:00
|
|
|
"mock==5.1.0",
|
2024-11-20 03:01:24 +00:00
|
|
|
"Jinja2==3.1.4",
|
2023-11-21 11:17:59 +00:00
|
|
|
"click==8.1.7",
|
2023-12-06 03:00:50 +00:00
|
|
|
"pexpect==4.9.0",
|
2024-11-20 03:01:24 +00:00
|
|
|
"python-minifier==2.11.3",
|
|
|
|
"cfn-lint==0.87.11",
|
2024-04-20 03:01:27 +00:00
|
|
|
"ruamel.yaml==0.18.6",
|
2024-11-20 03:01:24 +00:00
|
|
|
"pulumi==3.140.0",
|
|
|
|
"pulumi-aws==6.60.0",
|
|
|
|
"pulumi-aws-native==0.126.0",
|
|
|
|
"pulumi-policy==1.13.0",
|
|
|
|
"pulumi-command==0.11.1",
|
|
|
|
"pulumi_random==4.16.7",
|
2023-11-21 11:17:59 +00:00
|
|
|
]
|
|
|
|
|
2022-06-28 11:15:45 +00:00
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
|
|
]
|
|
|
|
|
2023-11-21 11:17:59 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
tests = [
|
|
|
|
'flake',
|
|
|
|
'pytest',
|
|
|
|
'twine',
|
|
|
|
]
|
|
|
|
|
2022-06-28 11:15:45 +00:00
|
|
|
[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"
|
2023-11-21 11:17:59 +00:00
|
|
|
|