#!/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"], )