Skip to content

Commit d1b2f5c

Browse files
committed
chore(deps): refactor structure and update deps
1 parent 48ad491 commit d1b2f5c

3 files changed

Lines changed: 9 additions & 10 deletions

File tree

.containifyci/containifyci.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ func main() {
1818
// Build Group 0
1919
enginepython := build.NewPythonServiceBuild("engine-python")
2020
enginepython.Folder = "."
21+
enginepython.File = "engine_python"
2122

2223
//TODO: adjust the registries to your own container registry
2324
build.BuildGroups(

app.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

pyproject.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
[project]
2-
name = "engine-python"
2+
name = "engine_python"
33
version = "0.1.0"
44
description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.13"
77
dependencies = [
8-
"fastapi>=0.119.0",
8+
"fastapi[standard]>=0.119.0",
99
"uvicorn>=0.37.0",
1010
]
11+
12+
[tool.setuptools]
13+
py-modules = ["engine_python"]
14+
15+
[project.scripts]
16+
engine-python = "engine_python:main"

0 commit comments

Comments
 (0)