mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
9 lines
258 B
Python
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])
|