lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 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]) |