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

9 lines
129 B
Python
Raw Normal View History

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