├── .gitignore ├── .reuse └── dep5 ├── LICENSES ├── CC0-1.0.txt └── LGPL-2.1-or-later.txt ├── README.md ├── setup.py ├── vms.gif └── vms.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbosdo/vms/HEAD/.gitignore -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbosdo/vms/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbosdo/vms/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbosdo/vms/HEAD/LICENSES/LGPL-2.1-or-later.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbosdo/vms/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbosdo/vms/HEAD/setup.py -------------------------------------------------------------------------------- /vms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbosdo/vms/HEAD/vms.gif -------------------------------------------------------------------------------- /vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbosdo/vms/HEAD/vms.py --------------------------------------------------------------------------------