Renovate Bot
3190fe83d6
Some checks failed
ZeroDownTime/CloudBender/pipeline/pr-main There was a failure building this commit
59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[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.9"
|
|
dependencies = [
|
|
"boto3==1.35.64",
|
|
"mock==5.1.0",
|
|
"Jinja2==3.1.4",
|
|
"click==8.1.7",
|
|
"pexpect==4.9.0",
|
|
"python-minifier==2.11.3",
|
|
"cfn-lint==0.87.11",
|
|
"ruamel.yaml==0.18.6",
|
|
"pulumi==3.139.0",
|
|
"pulumi-aws==6.59.1",
|
|
"pulumi-aws-native==0.126.0",
|
|
"pulumi-policy==1.13.0",
|
|
"pulumi-command==0.11.1",
|
|
"pulumi_random==4.16.7",
|
|
]
|
|
|
|
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"
|
|
|