Skip to content
Snippets Groups Projects
Commit 3489f296 authored by Andri Joos's avatar Andri Joos :blush:
Browse files

move to app dir

parent 902c3156
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
"name": "Python Debugger: main",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/src/app.py",
"program": "${workspaceFolder}/app/main.py",
"console": "integratedTerminal",
}
]
......
File moved
File moved
......@@ -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 = [
".",
]
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment