Files
cibuildwheel/test/old/09_setup_cfg/setup.py
T

9 lines
130 B
Python

from setuptools import (
Extension,
setup,
)
setup(
ext_modules=[Extension('spam.spam', sources=['spam/spam.c'])],
)