-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (36 loc) · 1.36 KB
/
setup.py
File metadata and controls
executable file
·38 lines (36 loc) · 1.36 KB
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
#!/usr/bin/env python3
#
# EnBackup setup file
#
from distutils.core import setup
setup(name='enbackup',
version="1.5",
description='EnBackup: backup tools based on rdiff-backup',
packages=['enbackup', 'enbackup.cmd'],
package_dir={'': 'src'},
scripts=['bin/enbackup',
'bin/enbackup-archive.py',
'bin/enbackup-archive.sh',
'bin/enbackup-rdiff-to-mirror.py',
'bin/enbackup-sata-poll.py',
'bin/enbackup-sata-insert.sh',
'bin/enbackup-sata-remove.sh',
'bin/backup_breakers.sh',
'bin/enbackup-suspend-usb-device.sh'],
data_files=[('/etc/enbackup.d',
['etc/enbackup-archive.rc',
'etc/enbackup-mirror.rc',
'etc/enbackup.rc']),
('/usr/share/doc/enbackup/examples/',
['etc/enbackup.rules',
'etc/enbackup-mysql-dump.cron',
'etc/enbackup-ldap-dump.cron',
'etc/enbackup-python-dump.cron',
'etc/enbackup.cron',
'etc/enbackup-installed-packages.cron',
'etc/enbackup_unaged.rc',
'etc/enbackup_aged.rc']),
('/usr/share/doc/enbackup/',
['doc/README'])
]
)