mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-12 17:35:44 +00:00
Added a few missing dependencies
This commit is contained in:
parent
fae9433c11
commit
885823fdbd
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -4,14 +4,14 @@
|
|||
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},
|
||||
|
|
Loading…
Reference in a new issue