~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to sandbox/exarkun/papers/2004/pycon/migration/sendmsg/setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2004-06-21 22:01:11 UTC
  • mto: (2.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040621220111-vkf909euqnyrp3nr
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from distutils.core import setup, Extension
 
2
setup(name="sendmsg",#version="1.0",
 
3
      ext_modules=[Extension("sendmsg", ["sendmsg.c"])])
 
4