1252330Sjeff# Python distutils build script for magic extension
2252330Sjefffrom distutils.core import setup
3252330Sjeff
4252330Sjeffsetup(name = 'Magic file extensions',
5252330Sjeff    version = '0.2',
6252330Sjeff    author = 'Reuben Thomas',
7252330Sjeff    author_email = 'rrt@sc3d.org',
8252330Sjeff    license = 'BSD',
9252330Sjeff    description = 'libmagic Python bindings',
10252330Sjeff    py_modules = ['magic'])
11252330Sjeff