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

9 lines
130 B
Python
Raw Normal View History

2019-11-12 23:51:27 +00:00
from setuptools import (
Extension,
setup,
)
2019-12-05 20:57:22 +01:00
setup(
ext_modules=[Extension('spam.spam', sources=['spam/spam.c'])],
)