# Conflicts:
#	packages/python/swig/CMakeLists.txt
#	packages/python/swig/setup.py.in
#	swi/library/CMakeLists.txt
This commit is contained in:
vscosta 2017-09-03 00:07:10 +01:00
parent 675ce8c77b
commit 11e81b457d
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
"""The main routine of the yap python project."""
import sys
import yap4py.yapi
def main(**args):
"""The main routine."""
if args is None:
args = sys.argv[1:]
if __name__ == "__main__":
main()
yap4py.yapi.live()