mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-11-08 15:13:42 +01:00
8 lines
172 B
Python
Executable File
8 lines
172 B
Python
Executable File
#!/usr/bin/env 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)
|