add launcher

This commit is contained in:
Nicklas Hansen
2023-12-29 16:37:26 -08:00
parent 1f6c7771b9
commit e3c876670a
2 changed files with 12 additions and 1 deletions

6
.gitignore vendored
View File

@@ -1,8 +1,12 @@
# logging
# Logging
tdmpc2/logs/
tdmpc2/outputs/
tdmpc2/wandb/
# HPC
nautilus/*.yaml
*.key
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

7
nautilus/launch.py Normal file
View File

@@ -0,0 +1,7 @@
from nautilus_launcher import launch
# Launcher for internal use.
# Source: https://github.com/nicklashansen/nautilus-launcher
if __name__ == '__main__':
launch()