cmake_minimum_required(VERSION 3.15)
project(edith LANGUAGES CXX)

find_package(Python REQUIRED COMPONENTS Interpreter Development)
find_package(pybind11 CONFIG REQUIRED)

# Include your source file here explicitly
pybind11_add_module(edith edith.cpp)