diff --git a/.vscode/launch.json b/.vscode/launch.json index af41e3e269058650f576fb8a7923f00a4398b0d1..e3fe23f6bd59667d905188d540035a620e9cf882 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,7 @@ "name": "Python Debugger: main", "type": "debugpy", "request": "launch", - "program": "${workspaceFolder}/src/app.py", + "program": "${workspaceFolder}/app/main.py", "console": "integratedTerminal", } ] diff --git a/src/__init__.py b/app/__init__.py similarity index 100% rename from src/__init__.py rename to app/__init__.py diff --git a/src/app.py b/app/main.py similarity index 100% rename from src/app.py rename to app/main.py diff --git a/pyproject.toml b/pyproject.toml index 742e9aec3cadde54704661b385548bc26852efc3..b7ffa8ee181b35c77371c2da88521fe443d94a3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,23 +2,26 @@ name = "maneuver-detection" version = "1.0.0" description = "Maneuver Detection for the Loft Dynamics Helicopter Simulator" -dependencies = [] +dependencies = [ +] maintainers = [ - {name = "Andri Joos"}, + { name = "Andri Joos" }, ] [project.urls] Repository = "https://git.420joos.dev/ost/ml/maneuver-detection" [project.scripts] -maneuver-detection = "src.app:main" +maneuver-detection = "app.main:main" [build-system] requires = [ "setuptools >= 60.0.0", - "wheel" + "wheel", ] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] -where = ["."] +where = [ + ".", +]