from distutils.core import setup, Extension
setup(name='PyGCM',
version='0.9.5',
description='Python GCM bindings',
author='John Viega'
author_email='viega@zork.org',
url='http://www.cryptobarn.com/gcm',
ext_modules=[Extension('GCM', ['prp.c', 'gcm.c'],
extra_compile_args=['-Wno-strict-prototypes', '-DPYTHON_BINDINGS'],
)],
)
And then run "python setup.py install"