12345678910111213141516171819 |
- from setuptools import setup, Extension
- from Cython.Build import cythonize
-
- ext_module = Extension(
- "packer",
- sources=["packer_pyx.pyx"],
- libraries=["candbc"],
- library_dirs=["./"],
-
-
- )
-
- setup(
- ext_modules=cythonize(ext_module),
- )
|