mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-11-19 12:32:22 +01:00
15 lines
241 B
Plaintext
15 lines
241 B
Plaintext
|
#!/usr/bin/python
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
wd = os.path.abspath(os.path.dirname(__file__))
|
||
|
sys.path.insert(0,(wd+"/../src/"))
|
||
|
sys.path.insert(0,(wd+"/../share/irpf90/src/"))
|
||
|
|
||
|
def main():
|
||
|
import irpf90
|
||
|
import cProfile
|
||
|
cProfile.run('main()')
|
||
|
|