mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
Also added py313 subports to dependencies needed for pep517 build of py313-gdbm and py313-tkinter.
14 lines
331 B
Python
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"]
|
|
)
|
|
]
|
|
)
|