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

add app

parent facc481e
No related branches found
No related tags found
No related merge requests found
[project]
name = "maneuver-detection"
version = "1.0.0"
description = "Maneuver Detection for the Loft Dynamics Helicopter Simulator"
dependencies = []
maintainers = [
{name = "Andri Joos"},
]
[project.urls]
Repository = "https://git.420joos.dev/ost/ml/maneuver-detection"
[project.scripts]
maneuver-detection = "src.app:main"
[build-system]
requires = [
"setuptools >= 60.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
from argparse import ArgumentParser
def main():
argument_parser = ArgumentParser('vqcfim', description='Virtual Quality Control for Injection Molding')
parsed_args = argument_parser.parse_args()
args = vars(parsed_args)
parsed_args.func(**args)
if __name__ == "__main__":
main()
\ No newline at end of file
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