Files
Joshua Root 562b355309 python313: stable release replacing python313-devel
Also added py313 subports to dependencies needed for pep517 build of
py313-gdbm and py313-tkinter.
2024-10-12 13:40:49 +11:00

14 lines
331 B
Python

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