From 885823fdbd9f7b165119dfdb4f6c7c978a40cfb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Borgstr=C3=B6m?= Date: Thu, 23 Jun 2011 22:49:16 +0200 Subject: [PATCH] Added a few missing dependencies --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e6df3b34e..a91cbbaee 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ import sys from setuptools import setup, Extension from Cython.Distutils import build_ext -dependencies = ['pycrypto', 'msgpack-python', 'pbkdf2.py', 'xattr', 'paramiko'] +dependencies = ['pycrypto', 'msgpack-python', 'pbkdf2.py', 'xattr', 'paramiko', 'Pyrex', 'Cython'] if sys.version_info < (2, 7): dependencies.append('argparse') setup(name='darc', version='0.1', - author=u'Jonas Borgström', + author='Jonas Borgström', author_email='jonas@borgstrom.se', packages=['darc'], cmdclass = {'build_ext': build_ext},