Home | History | Annotate | Download | only in python-uuid
      1 #!/usr/bin/python
      2 from distutils.core import setup, Extension
      3 
      4 uuid = Extension('e2fsprogs_uuid',
      5                  sources = ['uuid.c'],
      6                  libraries = ['uuid'])
      7 
      8 setup (name = 'e2fsprogs_uuid',
      9        version = '1.0',
     10        description = 'This is python uuid interface',
     11        ext_modules = [uuid])
     12