7699aa9d61407907c04213aaa39bb8e8f8cd0cb5
[sfa.git] / sfa / util / version.py.in
1 ### updated by the toplevel Makefile
2 version_tag="@VERSIONTAG@"
3 scm_url="@SCMURL@"
4 import socket
5  
6 def version_core (more={}):
7     core = { 'code_tag' : version_tag,
8              'code_url' : scm_url,
9              'hostname' : socket.gethostname(),
10              'call_id_support' : True,
11              'options_support' : True,
12              }
13     core.update(more)
14     return core