diff options
author | delphij <delphij@FreeBSD.org> | 2014-07-11 00:00:00 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2014-07-11 00:00:00 +0000 |
commit | a8fc83ae7c6014d3e0809848ce57e6dbd9e6b430 (patch) | |
tree | 942bc382f7aca8fc1809046d5db53f7a55fae1f0 /contrib/file/python/setup.py | |
parent | 8674b3c2aa3ad356a99168b86179e3ae4d898506 (diff) | |
download | FreeBSD-src-a8fc83ae7c6014d3e0809848ce57e6dbd9e6b430.zip FreeBSD-src-a8fc83ae7c6014d3e0809848ce57e6dbd9e6b430.tar.gz |
MFC r267897: MFV r267843:
Update file/libmagic to 5.19.
Diffstat (limited to 'contrib/file/python/setup.py')
-rw-r--r-- | contrib/file/python/setup.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/file/python/setup.py b/contrib/file/python/setup.py new file mode 100644 index 0000000..2c3b527 --- /dev/null +++ b/contrib/file/python/setup.py @@ -0,0 +1,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']) |