pymodule-spam/setup.py
Josh Holtrop 760f6b9f3b initial
2011-11-05 23:00:31 -04:00

9 lines
234 B
Python

from distutils.core import setup, Extension
module1 = Extension('spam', sources = ['spammodule.c'])
setup(name = 'pkgname', version = '1.0',
description = 'this is the package description',
ext_modules = [module1])