root/config.py

Revision 74, 0.5 kB (checked in by steve, 7 months ago)

modified where version information is kept

Line 
1 #!/usr/bin/env python2.5
2 # encoding: utf-8
3 """
4 config.py
5
6 Created by Shu Ning Bian on 2007-09-23.
7 Copyright (c) 2007 . All rights reserved.
8 Licensed for distribution under the GPL version 2, check COPYING for details.
9 """
10
11 import sys
12 import os
13
14 taps = 128
15 weights = (100, 50, 50)
16
17 img_size = (128, 128)
18 crop_size= 90
19
20 tmp_file=".89885e5234e2f0ae1e2015642425d1eb.jpg"
21
22 font_size=12
23 font_name="Monaco"
24
25 trash_dir = ".mactorii-trash"
26
27 text_yoffset = 3
28
29 fps = 32
30 xmotion_time = 0.03
31 bands = 3
32
33
34 def main():
35         pass
36
37
38 if __name__ == '__main__':
39         main()
40
Note: See TracBrowser for help on using the browser.