47 lines
1.1 KiB
TOML
47 lines
1.1 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",
|
|
"mock",
|
|
"Jinja2>=3.0.0",
|
|
"click",
|
|
"pexpect",
|
|
"cfn-lint>=0.34",
|
|
"python-minifier",
|
|
"pulumi>=3.67.0",
|
|
"pulumi-aws>5.0.0",
|
|
"pulumi-aws-native",
|
|
"pulumi-policy",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Console",
|
|
"Operating System :: POSIX",
|
|
"Programming Language :: Python",
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
]
|
|
|
|
[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"
|