mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-14 18:36:40 +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 setuptools import setup, Extension
|
||||||
from Cython.Distutils import build_ext
|
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):
|
if sys.version_info < (2, 7):
|
||||||
dependencies.append('argparse')
|
dependencies.append('argparse')
|
||||||
|
|
||||||
|
|
||||||
setup(name='darc',
|
setup(name='darc',
|
||||||
version='0.1',
|
version='0.1',
|
||||||
author=u'Jonas Borgström',
|
author='Jonas Borgström',
|
||||||
author_email='jonas@borgstrom.se',
|
author_email='jonas@borgstrom.se',
|
||||||
packages=['darc'],
|
packages=['darc'],
|
||||||
cmdclass = {'build_ext': build_ext},
|
cmdclass = {'build_ext': build_ext},
|
||||||
|
|
Loading…
Reference in a new issue