10 lines
161 B
Python
10 lines
161 B
Python
import os, sys
|
|
|
|
from setuptools import setup, Extension
|
|
|
|
setup(
|
|
name="spam",
|
|
ext_modules=[Extension('spam', sources=['spam.c'])],
|
|
version="0.1.0",
|
|
)
|