Added a few missing dependencies

This commit is contained in:
Jonas Borgström 2011-06-23 22:49:16 +02:00
parent fae9433c11
commit 885823fdbd
1 changed files with 2 additions and 2 deletions

View File

@ -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},