1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 09:19:31 +00:00
borg/setup.py
2010-10-19 19:07:35 +02:00

17 lines
454 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('dedupestore._speedups', ['dedupestore/_speedups.c'])],
entry_points = {
'console_scripts': [
'dedupestore = dedupestore.archiver:main',
]
})