You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
316 B

#!/usr/bin/python
from distutils.core import setup, Extension
uuid = Extension('e2fsprogs_uuid',
sources = ['uuid.c'],
libraries = ['uuid'])
setup (name = 'e2fsprogs_uuid',
version = '1.0',
description = 'This is python uuid interface',
ext_modules = [uuid])