From 3489f296a35f989addf8c5a303d46a46d9aec75f Mon Sep 17 00:00:00 2001 From: Andri Joos <andri@joos.io> Date: Wed, 6 Nov 2024 17:36:16 +0100 Subject: [PATCH] move to app dir --- .vscode/launch.json | 2 +- {src => app}/__init__.py | 0 src/app.py => app/main.py | 0 pyproject.toml | 13 ++++++++----- 4 files changed, 9 insertions(+), 6 deletions(-) rename {src => app}/__init__.py (100%) rename src/app.py => app/main.py (100%) diff --git a/.vscode/launch.json b/.vscode/launch.json index af41e3e..e3fe23f 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 742e9ae..b7ffa8e 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 = [ + ".", +] -- GitLab