blob: c09173ff981fc2ad60ee5ed6a95c31c9f29e4313 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/python3
"""setup.py
Configuration file for setuptools.
"""
from distutils.core import setup
setup(
name="xbackup",
version="1.0.0-dev",
description="Convenience wrapper around the Borg backup tool",
author="xengineering",
author_email="me@xengineering.eu",
url="https://xengineering.eu",
packages=["xbackup"],
scripts=["main.py"],
)
|