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.You are not allowed to attach a file to this page.