diff options
author | Xin LI <delphij@FreeBSD.org> | 2014-06-26 06:03:39 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2014-06-26 06:03:39 +0000 |
commit | b6cee71de37d56e36dbc118e2d9b03e7cece5709 (patch) | |
tree | 5b4f7850752944df750e0c678951b78d9484b67e /contrib/file/python/setup.py | |
parent | 3a8106f5280fd282639ba86273f677ff78191301 (diff) | |
parent | 77409849e70d030169c23215ab4e345440ccdcd8 (diff) |
Notes
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 000000000000..2c3b527bb890 --- /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']) |