add pypy starters

This commit is contained in:
chrys
2018-03-28 18:14:17 +02:00
parent 88a10882f2
commit 36a8549dc0
3 changed files with 50 additions and 1 deletions

21
src/fenrir-pypy Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env pypy3
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
import os, sys, inspect
fenrirPath = os.path.dirname(os.path.realpath(os.path.abspath(inspect.getfile(inspect.currentframe()))))
if not fenrirPath in sys.path:
sys.path.append(fenrirPath)
from fenrirscreenreader.core import fenrirManager
def main():
app = fenrirManager.fenrirManager()
app.proceed()
del app
if __name__ == "__main__":
main()