-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 loc) · 968 Bytes
/
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
from distutils.core import setup, Extension
import os, sys
setup(name="flud",
version="0.2.1",
description="flud decentralized backup",
long_description='a 100% decentralized backup system',
author="Alen Peacock",
author_email="[email protected]",
url='http://flud.org',
license='GPLv3 (c)2004-2007 Alen Peacock',
packages=['flud',
'flud.protocol',
'flud.bin',
'flud.test'],
package_dir={'flud': 'flud',
'flud.protocol': 'flud/protocol',
'flud.bin': 'flud/bin',
'flud.test': 'flud/test'},
package_data={'flud':
['images/*.png', 'FludNode.tac', 'fludrules.init']},
scripts = ['flud/bin/fludnode',
'flud/bin/tacpath-flud',
'flud/bin/fludscheduler',
'flud/bin/fludclient',
'flud/bin/fludlocalclient',
'flud/bin/flud-mastermetadataViewer',
'flud/bin/flud-metadataViewer',
'flud/bin/start-fludnodes',
'flud/bin/stop-fludnodes',
'flud/bin/gauges-fludnodes',
'flud/bin/clean-fludnodes']
)