Files
dependencies/python3-dev/python3_dev/__init__.py
Adeeb Shihadeh dfa87aa31a add python3-dev package (#13)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 21:46:40 -08:00

10 lines
304 B
Python

import os
DIR = os.path.join(os.path.dirname(__file__), "install")
INCLUDE_DIR = os.path.join(DIR, "include")
def smoketest():
assert os.path.isfile(os.path.join(INCLUDE_DIR, "Python.h")), "Python.h not found"
assert os.path.isfile(os.path.join(INCLUDE_DIR, "pyconfig.h")), "pyconfig.h not found"