diff options
author | xengineering <me@xengineering.eu> | 2022-09-23 20:06:21 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-09-23 20:10:06 +0200 |
commit | 4a439a96abb04537152c99d170e84e79ae941ef1 (patch) | |
tree | d8636bab4c918bc71ea37d825139593f44c08ade /src/setup.py | |
parent | ae91c75df75678d504fd3d1fd4fdf416df9296dd (diff) | |
download | xbackup-4a439a96abb04537152c99d170e84e79ae941ef1.tar xbackup-4a439a96abb04537152c99d170e84e79ae941ef1.tar.zst xbackup-4a439a96abb04537152c99d170e84e79ae941ef1.zip |
Refactor folder structure
This removes the `install` target. Should be re-introduced later.
Diffstat (limited to 'src/setup.py')
-rw-r--r-- | src/setup.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/setup.py b/src/setup.py deleted file mode 100644 index 0ba6d7a..0000000 --- a/src/setup.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/python3 -# vim: shiftwidth=4 softtabstop=4 tabstop=4 expandtab - - -"""setup.py - -Configuration file for setuptools. -""" - - -from distutils.core import setup - - -setup( - name="xbackup", - version="1.0.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"], -) |