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

12 lines
197 B
Python
Raw Normal View History

2019-11-12 23:51:27 +00:00
from setuptools import (
Extension,
setup,
)
setup(
name="spam",
ext_modules=[Extension('spam', sources=['spam.c'])],
2019-09-07 17:38:31 +01:00
extras_require={'test': ['nose']},
version="0.1.0",
)