summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorLukasz Nowak <luke@nexedi.com>2010-10-15 14:45:50 +0200
committerLukasz Nowak <luke@nexedi.com>2010-10-15 14:45:50 +0200
commit1559a197ef24480b350e2e1195c930e0f0deb947 (patch)
tree7fd5dfbacf4692c0b286982460a25facb30cc667 /setup.py
parent36fb78ab974ef7ecaf94a8a3fb7ec1026fa00b3e (diff)
downloadpython-magic-1559a197ef24480b350e2e1195c930e0f0deb947.tar.gz
- fix keyword to define requirements
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 5d9d9e7..ea7c30c 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ setup(name='python-magic',
url="http://github.com/ahupp/python-magic",
version='0.3.1',
py_modules=['magic'],
- requires=['ctypes'],
+ install_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.