blob: e73eef067eececdf64d6945f1a14988e87011514 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/python3
# vim: shiftwidth=4 softtabstop=4 tabstop=4 expandtab
from distutils.core import setup
setup(name="xbackup",
version="0.1.0",
description="Convenience wrapper around the Borg backup tool",
author="xengineering",
author_email="me@xengineering.eu",
url="https://xengineering.eu",
packages=["xbackup"],
scripts=["scripts/xbackup"],
)
|