-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·43 lines (40 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python3
from distutils.core import setup
import os
import glob
setup(
name="sftbackup",
version="0.1",
description="Simple backup client based on Borg Backup and Snapper",
long_description=(
"Backup your machine with Borg. Optionally, use Snapper to "
"snapshot your filesystem to back up.\nsftbackup is intended"
"for automated backups of servers, but when started manually, "
"any other Linux device can be backed up. As sftbackup is just "
"a wrapper for Borg, you can just use Borg commands directly."
),
maintainer="SFT Technologies",
maintainer_email="[email protected]",
url="https://github.com/SFTtech/sftbackup",
license='GPL3+',
packages=[
"sftbackup",
],
data_files=[
("/usr/lib/systemd/system/", [
"etc/sftbackup.service",
]),
("/etc/", [
"etc/sftbackup.cfg",
]),
],
platforms=[
'Linux',
],
classifiers=[
("License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)"),
"Environment :: Console",
"Operating System :: POSIX :: Linux"
],
)