1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-17 17:35:41 +00:00
borg/setup.py

24 lines
607 B
Python
Raw Normal View History

2010-02-28 20:22:45 +01:00
# -*- encoding: utf-8 *-*
#!/usr/bin/env python
2010-10-30 13:24:23 +02:00
import sys
2010-10-15 20:46:17 +02:00
from setuptools import setup, Extension
2010-02-28 20:22:45 +01:00
2010-11-15 22:18:47 +01:00
dependencies = ['pycrypto', 'msgpack-python', 'pbkdf2.py', 'xattr', 'paramiko']
2010-10-30 13:24:23 +02:00
if sys.version_info < (2, 7):
dependencies.append('argparse')
2010-10-27 20:12:40 +02:00
setup(name='darc',
2010-10-15 20:46:17 +02:00
version='0.1',
author=u'Jonas Borgström',
2010-02-28 20:22:45 +01:00
author_email='jonas@borgstrom.se',
2010-10-27 20:12:40 +02:00
packages=['darc'],
ext_modules=[Extension('darc._speedups', ['darc/_speedups.c'])],
2010-10-30 13:24:23 +02:00
install_requires=dependencies,
2010-10-15 20:46:17 +02:00
entry_points = {
'console_scripts': [
2010-10-27 20:12:40 +02:00
'darc = darc.archiver:main',
2010-10-15 20:46:17 +02:00
]
})
2010-04-18 22:08:12 +02:00