From 97419c30f9b4ef7e077cbbf23eb43490a137fc57 Mon Sep 17 00:00:00 2001 From: Fuxino Date: Fri, 5 May 2023 19:03:23 +0200 Subject: [PATCH] Use setuptools to build the project --- PKGBUILD | 15 ++++++++++++--- README.md | 35 +++++++++++++++++++++++++++++++---- pyproject.toml | 3 +++ requirements.txt | 1 - setup.cfg | 4 ++++ setup.py | 8 -------- simple_backup.conf | 14 ++++++++++++++ 7 files changed, 64 insertions(+), 16 deletions(-) create mode 100644 pyproject.toml delete mode 100644 requirements.txt delete mode 100644 setup.py create mode 100644 simple_backup.conf diff --git a/PKGBUILD b/PKGBUILD index b46d1fa..c08b160 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,7 +10,10 @@ arch=('any') url="https://github.com/Fuxino/simple_backup.git" license=('GPL3') makedepends=('git' - 'python-setuptools') + 'python-setuptools' + 'python-build' + 'python-installer' + 'python-wheel') depends=('python' 'rsync' 'python-dotenv' @@ -26,14 +29,20 @@ pkgver() git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } +prepare() +{ + git -C ${srcdir}/${pkgname} clean -dfx +} + build() { cd ${srcdir}/${pkgname} - python3 setup.py build + python -m build --wheel --no-isolation } package() { cd ${srcdir}/${pkgname} - python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build + python -m installer --destdir=${pkgdir} dist/*.whl + install -Dm644 ${srcdir}/${pkgname}/${pkgname}.conf ${pkgdir}/etc/${pkgname}/${pkgname}.conf } diff --git a/README.md b/README.md index 5d48a10..7646fb9 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,37 @@ -# simple_backup +simple_backup +============ A simple backup script ## Description simple_backup is a Python script that allows you to backup your files. -It reads from a configuration file the files/directories that must be copied, -the destination directory for the backup and a few other options. +Parameters like input files/directories, output directory etc. can be specified in a configuration file, or on the command line. Run: + +```bash +simple_backup -h +``` + +to print all possible command line options. ## Dependencies -rsync is used to perform the backup. +The script uses rsync to actually run the backup, so you will have to install it on your system. For example on Arch Linux: + +```bash +sudo pacman -Syu rsync +``` + +## Install +To install the program, first clone the repository: + +```bash +git clone https://github.com/Fuxino/simple_backup.git +``` + +Then run: + +```bash +cd simple_backup +python -m build --wheel +python -m installer dist/*.whl + +For Arch Linux, a PKGBUILD that automates this process is provided. + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..75e0100 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ['setuptools'] +build-backend = 'setuptools.build_meta' diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 6d30c42..0000000 --- a/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -python-dotenv>=1.0.0 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 26ceb79..9cc3b93 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,6 +22,10 @@ classifiers = [options] packages = simple_backup +python_requires = >=3.7 +install_requires = + python-dotenv + systemd-python [options.entry_points] console_scripts = diff --git a/setup.py b/setup.py deleted file mode 100644 index 49394e1..0000000 --- a/setup.py +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env python3 - -"""Setup script""" - -from setuptools import setup - -setup() - diff --git a/simple_backup.conf b/simple_backup.conf new file mode 100644 index 0000000..6adc9a4 --- /dev/null +++ b/simple_backup.conf @@ -0,0 +1,14 @@ +#Example config file for simple_backup + +[default] +#Input directories. Use a comma to separate items +inputs=/home/my_home,/etc + +#Output directory +backup_dir=/media/Backup + +#Exclude patterns. Use a comma to separate items +exclude=.gvfs,.local/share/gvfs-metadata,.cache,.dbus,.Trash,.local/share/Trash,.macromedia,.adobe,.recently-used,.recently-used.xbel,.thumbnails + +#Number of snapshots to keep (use -1 to keep all) +keep=-1 \ No newline at end of file