9 lines
130 B
Python
9 lines
130 B
Python
from setuptools import (
|
|
Extension,
|
|
setup,
|
|
)
|
|
|
|
setup(
|
|
ext_modules=[Extension('spam.spam', sources=['spam/spam.c'])],
|
|
)
|