1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2025-12-21 05:18:00 +01:00

Added tox, setup.py, executable, test-req

This commit is contained in:
2016-12-19 20:22:22 +01:00
parent e3cfd02686
commit 68049a6eb8
4 changed files with 72 additions and 0 deletions

16
script/fs-uae-wrapper Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Run CD32 games using fsuae
"""
from fs_uae_wrapper import wrapper
def main():
"""run wrapper"""
wrapper.run()
if __name__ == "__main__":
main()