2012-03-31 20:24:03 +02:00
|
|
|
# Python distutils build script for magic extension
|
2012-05-02 13:23:57 +02:00
|
|
|
from distutils.core import setup
|
2012-03-31 20:24:03 +02:00
|
|
|
|
2012-05-02 13:23:57 +02:00
|
|
|
setup(name = 'Magic file extensions',
|
|
|
|
version = '0.2',
|
|
|
|
author = 'Reuben Thomas',
|
|
|
|
author_email = 'rrt@sc3d.org',
|
2012-03-31 20:24:03 +02:00
|
|
|
license = 'BSD',
|
2012-05-02 13:23:57 +02:00
|
|
|
description = 'libmagic Python bindings',
|
|
|
|
py_modules = ['magic'])
|