Files
cibuildwheel/test/09_setup_cfg/setup.py
T
2019-12-05 21:13:11 +01:00

9 lines
129 B
Python

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