mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-25 04:06:18 +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])
|