RetroArch/ps3/ps3py/setup.py

9 lines
258 B
Python
Raw Normal View History

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])