1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-22 15:57:15 +00:00
borg/setup.py
2010-10-15 20:46:17 +02:00

17 lines
442 B
Python

# -*- encoding: utf-8 *-*
#!/usr/bin/env python
from setuptools import setup, Extension
setup(name='Dedupestore',
version='0.1',
author=u'Jonas Borgström',
author_email='jonas@borgstrom.se',
packages=['dedupestore'],
ext_modules=[Extension('_speedups', ['dedupestore/_speedups.c'])],
entry_points = {
'console_scripts': [
'dedupestore = dedupestore.archiver:main',
]
})