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