RetroArch/ps3/ps3py/setup.py
TwinAphex51224 90165492a1 (PS3) Added makefile targets for PS3 CFW - NOTE: SSNES Salamander
doesn't seem to work yet on CFW PS3 - use make pkg-signed-standalone
for now on CFW PS3 until this gets sorted out.
2012-02-27 13:43:44 +01:00

9 lines
258 B
Python

from distutils.core import setup, Extension
module1 = Extension('pkgcrypt', sources = ['crypt.c'])
setup (name = 'pkgcrypt',
version = '1.0',
description = 'C implementation of the crypt function from pkg.py',
ext_modules = [module1])