mirror of https://github.com/Nonannet/copapy.git
14 lines
206 B
Python
14 lines
206 B
Python
|
|
from setuptools import setup, Extension
|
||
|
|
|
||
|
|
ext = Extension(
|
||
|
|
"coparun_module",
|
||
|
|
sources=[
|
||
|
|
"src/coparun/coparun_module.c",
|
||
|
|
"src/coparun/runmem.c"
|
||
|
|
]
|
||
|
|
)
|
||
|
|
|
||
|
|
setup(
|
||
|
|
ext_modules=[ext],
|
||
|
|
)
|