summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAdam Hupp <adam@hupp.org>2010-03-31 16:32:36 -0700
committerAdam Hupp <adam@hupp.org>2010-03-31 16:32:36 -0700
commit2ce51e7ec2259d8774f31b39c4a4d87f44f418d7 (patch)
tree2b480079b72da9b7625466f348d1a81bc46af245 /setup.py
parent6812c08876463ec47ea86ae0d9e83e17161c32bd (diff)
downloadpython-magic-2ce51e7ec2259d8774f31b39c4a4d87f44f418d7.tar.gz
- bump version
- require ctypes for install
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 47ee78f..e3af13a 100644
--- a/setup.py
+++ b/setup.py
@@ -6,8 +6,9 @@ setup(name='python-magic',
author='Adam Hupp',
author_email='adam@hupp.org',
url="http://github.com/ahupp/python-magic",
- version='0.2',
+ version='0.3',
py_modules=['magic'],
+ requires=['ctypes'],
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.