Start from a Cython program with a entrypoint:
def do_stuff():
cdef int a,b,c
a = 1
b = 2
c = 3
print("Hello World!")
print([a,b,c])
input("Press Enter to continue.")
Create a setup.py file in the same folder:
from distutils.core import set...