mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-10-31 19:23:42 +01:00
8 lines
173 B
Python
Executable File
8 lines
173 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys, os
|
|
wd = os.path.abspath(os.path.dirname(__file__))
|
|
sys.path.insert(0,(wd+"/../src/"))
|
|
from version import *
|
|
print "VERSION=%s"%(version)
|