├── .gitignore ├── .idea └── .gitignore ├── LICENSE ├── README.md ├── images ├── divisio_design-assets_logo_schwarz_WEB.png ├── stag100preview.png └── stag_logo.png ├── makeExecutable.sh ├── requirements.in ├── requirements.txt ├── stag.py ├── stag_gui.py ├── stag_gui_linux.spec └── xmphandler.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/README.md -------------------------------------------------------------------------------- /images/divisio_design-assets_logo_schwarz_WEB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/images/divisio_design-assets_logo_schwarz_WEB.png -------------------------------------------------------------------------------- /images/stag100preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/images/stag100preview.png -------------------------------------------------------------------------------- /images/stag_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/images/stag_logo.png -------------------------------------------------------------------------------- /makeExecutable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/makeExecutable.sh -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/requirements.txt -------------------------------------------------------------------------------- /stag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/stag.py -------------------------------------------------------------------------------- /stag_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/stag_gui.py -------------------------------------------------------------------------------- /stag_gui_linux.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/stag_gui_linux.spec -------------------------------------------------------------------------------- /xmphandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIVISIO-AI/stag/HEAD/xmphandler.py --------------------------------------------------------------------------------