<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from setuptools import Extension, setup

setup(
    ext_modules = [
        Extension(
            name="_gdbm",
            sources=["_gdbmmodule.c"],
            include_dirs = ["__PYTHON_INCDIR__/internal", "__PREFIX__/include"],
            libraries = ["gdbm"],
            library_dirs = ["__PREFIX__/lib"]
        )
    ]
)
</pre></body></html>