This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/python/swig/yap4py/__main__.py
vscosta 11e81b457d Merge branch 'master' of https://github.com/vscosta/yap-6.3
# Conflicts:
#	packages/python/swig/CMakeLists.txt
#	packages/python/swig/setup.py.in
#	swi/library/CMakeLists.txt
2017-09-03 00:07:10 +01:00

15 lines
244 B
Python

"""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()