mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-22 15:57:15 +00:00
13 lines
No EOL
332 B
Python
13 lines
No EOL
332 B
Python
# -*- encoding: utf-8 *-*
|
|
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
setup(name='Dedupstore',
|
|
version='1.0',
|
|
author='Jonas Borgström',
|
|
author_email='jonas@borgstrom.se',
|
|
packages=['dedupstore'],
|
|
ext_modules=[Extension('_chunkifier', ['dedupstore/_chunkifier.c'])],
|
|
)
|
|
|