diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9c2470e --- /dev/null +++ b/pyproject.toml @@ -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"]