#include <boost/python.hpp>
#include "hello.h"
using namespace boost::python;

BOOST_PYTHON_MODULE(hello)
{
    def("greet", greet);
}

