borg/setup.py

18 lines
442 B
Python
Raw Normal View History

2010-02-28 19:22:45 +00:00
# -*- encoding: utf-8 *-*
#!/usr/bin/env python
2010-10-15 18:46:17 +00:00
from setuptools import setup, Extension
2010-02-28 19:22:45 +00:00
2010-03-01 21:04:43 +00:00
setup(name='Dedupestore',
2010-10-15 18:46:17 +00:00
version='0.1',
author=u'Jonas Borgström',
2010-02-28 19:22:45 +00:00
author_email='jonas@borgstrom.se',
2010-03-01 21:04:43 +00:00
packages=['dedupestore'],
2010-03-01 22:39:14 +00:00
ext_modules=[Extension('_speedups', ['dedupestore/_speedups.c'])],
2010-10-15 18:46:17 +00:00
entry_points = {
'console_scripts': [
'dedupestore = dedupestore.archiver:main',
]
})
2010-04-18 20:08:12 +00:00