diff options
| author | Adam Hupp <adam@hupp.org> | 2010-03-31 15:50:55 -0700 |
|---|---|---|
| committer | Adam Hupp <adam@hupp.org> | 2010-03-31 15:50:55 -0700 |
| commit | 7db98f44bccc77c3adaef638b7765aaf0f6230ae (patch) | |
| tree | 31a9c66e495a8cf3b36a2adf3d861a45adc9045b /setup.py | |
| download | python-magic-7db98f44bccc77c3adaef638b7765aaf0f6230ae.tar.gz | |
initial commit
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..22dda6f --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +from setuptools import setup, Extension +#from distutils.core import setup, Extension + +setup(name='python-magic', + description='File type identification using libmagic', + author='Adam Hupp', + author_email='adam@hupp.org', + url="http://hupp.org/adam/hg/python-magic", + version='0.1', + py_modules=['magic'], + long_description="""This module uses ctypes to access the libmagic file type +identification library. It makes use of the local magic database and +supports both textual and MIME-type output. +""", + keywords="mime magic file", + license="PSF", + ) |
