xref: /trueos/contrib/file/python/setup.py (revision 35ed3ebe65c0ce122eec0ef7dc34fb0af91357d6)
1# Python distutils build script for magic extension
2from distutils.core import setup
3
4setup(name = 'Magic file extensions',
5    version = '0.2',
6    author = 'Reuben Thomas',
7    author_email = 'rrt@sc3d.org',
8    license = 'BSD',
9    description = 'libmagic Python bindings',
10    py_modules = ['magic'])
11