Files
cibuildwheel/test/11_before_test/setup.py
T

9 lines
146 B
Python
Raw Normal View History

2020-01-07 00:17:03 +01:00
from setuptools import setup, Extension
setup(
name="spam",
ext_modules=[Extension('spam', sources=['spam.c'])],
version="0.1.0",
)