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

Merge branch 'app'

parents 902c3156 3489f296
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
"name": "Python Debugger: main", "name": "Python Debugger: main",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/src/app.py", "program": "${workspaceFolder}/app/main.py",
"console": "integratedTerminal", "console": "integratedTerminal",
} }
] ]
......
File moved
File moved
...@@ -2,23 +2,26 @@ ...@@ -2,23 +2,26 @@
name = "maneuver-detection" name = "maneuver-detection"
version = "1.0.0" version = "1.0.0"
description = "Maneuver Detection for the Loft Dynamics Helicopter Simulator" description = "Maneuver Detection for the Loft Dynamics Helicopter Simulator"
dependencies = [] dependencies = [
]
maintainers = [ maintainers = [
{name = "Andri Joos"}, { name = "Andri Joos" },
] ]
[project.urls] [project.urls]
Repository = "https://git.420joos.dev/ost/ml/maneuver-detection" Repository = "https://git.420joos.dev/ost/ml/maneuver-detection"
[project.scripts] [project.scripts]
maneuver-detection = "src.app:main" maneuver-detection = "app.main:main"
[build-system] [build-system]
requires = [ requires = [
"setuptools >= 60.0.0", "setuptools >= 60.0.0",
"wheel" "wheel",
] ]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find] [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