summaryrefslogtreecommitdiff
path: root/python/setup.py
blob: 2c3b527bb89062ee8fe5948ef55f8647eef2899b (plain)
1
2
3
4
5
6
7
8
9
10
# Python distutils build script for magic extension
from distutils.core import setup

setup(name = 'Magic file extensions',
    version = '0.2',
    author = 'Reuben Thomas',
    author_email = 'rrt@sc3d.org',
    license = 'BSD',
    description = 'libmagic Python bindings',
    py_modules = ['magic'])