view tools/python-PE/modules/setup.py @ 122:ad73eacf560a default tip

remove warning
author e095732
date Thu, 07 Feb 2013 22:32:26 +0900
parents 6c40056777be
children
line wrap: on
line source

from distutils.core import setup, Extension

psxlinda = Extension('psxlinda',
					sources = ['psxlindamodule.c'])

setup(name = 'PSXLinda Module',
	  version = '1.0',
	  description = 'This is PSXLinda Module',
	  ext_modules = [psxlinda])