projects
/
tx
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e73be224b1e1d514b549f16f5db6751740f782d5
[tx]
/
install_conf.py
1
# -*- coding:utf-8 -*-
2
3
_binPrefix = '/usr/local/bin'
4
5
#
6
# Modules to install.
7
#
8
g_modules = [
9
'context.py' ,
10
'error.py' ,
11
'htmlparser.py' ,
12
'htmltree.py' ,
13
'iterators.py' ,
14
'misc.py' ,
15
'nodes.py' ,
16
'nodes_misc.py' ,
17
'parser.py' ,
18
'rxpcompat.py' ,
19
'sequence.py' ,
20
'sequence_misc.py' ,
21
'tags.py' ,
22
'xpath.py' ,
23
'xpath_misc.py' ,
24
( 'xpath_prompt.py' , 'x' , _binPrefix + '/tx-prompt' ) ,
25
'xpathfn.py' ,
26
'xpathparser.py'
27
]
28
29
#
30
# Module name.
31
#
32
g_globalModule = 'tuxeenet'
33
34
#
35
# Sub-module name (or None)
36
#
37
g_subModule = 'tx'
38
39
#
40
# Target directory.
41
#
42
g_targetPrefix = '/opt/tuxeenet/python'
43
44
# Local Variables:
45
# tab-width: 4
46
# python-indent: 4
47
# End: