Attachment 'setup.py'

Download

   1 #!/usr/bin/env python26
   2 
   3 from distutils.core import setup, Extension
   4 
   5 module1 = Extension('filecase',
   6                     include_dirs = [
   7                         '/usr/include'
   8                     ],
   9                     sources = ['filecase.c'])
  10 
  11 setup (name = 'filecase',
  12        version = '1.0',
  13        description = 'Return the canonical file name for a file in case-insensitive HFS',
  14        ext_modules = [module1])

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2010-01-08 17:32:40, 1.2 KB) [[attachment:filecase.c]]
  • [get | view] (2010-01-08 17:31:02, 0.7 KB) [[attachment:filesys.py.patch]]
  • [get | view] (2010-01-08 17:33:14, 0.4 KB) [[attachment:setup.py]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.