Files
cibuildwheel/test/02_test/setup.py
T
2020-02-14 15:50:06 +00:00

12 lines
197 B
Python

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