We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ad491 commit d1b2f5cCopy full SHA for d1b2f5c
3 files changed
.containifyci/containifyci.go
@@ -18,6 +18,7 @@ func main() {
18
// Build Group 0
19
enginepython := build.NewPythonServiceBuild("engine-python")
20
enginepython.Folder = "."
21
+ enginepython.File = "engine_python"
22
23
//TODO: adjust the registries to your own container registry
24
build.BuildGroups(
app.py
pyproject.toml
@@ -1,10 +1,16 @@
1
[project]
2
-name = "engine-python"
+name = "engine_python"
3
version = "0.1.0"
4
description = "Add your description here"
5
readme = "README.md"
6
requires-python = ">=3.13"
7
dependencies = [
8
- "fastapi>=0.119.0",
+ "fastapi[standard]>=0.119.0",
9
"uvicorn>=0.37.0",
10
]
11
+
12
+[tool.setuptools]
13
+py-modules = ["engine_python"]
14
15
+[project.scripts]
16
+engine-python = "engine_python:main"
0 commit comments