Files
cibuildwheel/test/02_test/setup.py
T

9 lines
184 B
Python

from setuptools import setup, Extension
setup(
name="spam",
ext_modules=[Extension('spam', sources=['spam.c'])],
extras_require={'test': ['nose']},
version="0.1.0",
)