decomposer: generate files for Create a production-suitable Dockerfile and minimal Docker Compose configuration for packaging and running the completed FastAPI endpoint monitoring service.

This commit is contained in:
2026-08-09 15:10:43 +00:00
parent c8cfcf0407
commit e070ecb0a2

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[project]
name = "fastapi-containerizer"
version = "1.0.0"
description = "Adds auditable production container artifacts to an existing FastAPI service"
requires-python = ">=3.11"
[project.scripts]
containerize-fastapi = "containerizer.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]