sremp

Results 1 issues of sremp

The `install_deps()` function checks for PSL1GHT by doing a stat on the `PSL1GHT` directory: ```python # PSL1GHT try: os.stat('PSL1GHT') print('PSL1GHT is already installed') except: print('Cloning PSL1GHT') subprocess.call(['git', 'clone', 'http://github.com/sahlberg/PSL1GHT']) os.chdir('PSL1GHT/tools/ps3py')...