Files
cibuildwheel/test/09_setup_cfg/setup.py
T
2020-02-14 15:50:06 +00:00

9 lines
130 B
Python

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