Source code for python_template_cpp

import os
import os.path

from .extension import *

__version__ = "0.1.0"


[docs] def include_path(): return os.path.abspath(os.path.join(os.path.dirname(__file__), "include"))
[docs] def bin_path(): return os.path.abspath(os.path.join(os.path.dirname(__file__), "bin"))
[docs] def lib_path(): return os.path.abspath(os.path.join(os.path.dirname(__file__), "lib"))