mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-11-09 07:33:43 +01:00
8 lines
168 B
Python
8 lines
168 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
import sys, os
|
||
|
wd = os.path.abspath(os.path.dirname(__file__))
|
||
|
sys.path.insert(0,(wd+"/../src/"))
|
||
|
from version import *
|
||
|
print "VERSION=%s"%(version)
|