From 7db98f44bccc77c3adaef638b7765aaf0f6230ae Mon Sep 17 00:00:00 2001 From: Adam Hupp Date: Wed, 31 Mar 2010 15:50:55 -0700 Subject: initial commit --- setup.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 setup.py (limited to 'setup.py') 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", + ) -- cgit v1.2.1