some new stuff.
idk its all pretty fun! some C++ too!
This commit is contained in:
10
simulations/sorting_quicksort/setup.py
Normal file
10
simulations/sorting_quicksort/setup.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from setuptools import setup, Extension
|
||||
|
||||
module = Extension("sorting", sources=["sorting.c"])
|
||||
|
||||
setup(
|
||||
name="sorting",
|
||||
version="1.0",
|
||||
description="Simple C sorting extension",
|
||||
ext_modules=[module],
|
||||
)
|
||||
Reference in New Issue
Block a user