mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
7 lines
127 B
Python
7 lines
127 B
Python
|
from distutils.core import setup
|
||
|
from Cython.Build import cythonize
|
||
|
|
||
|
setup(
|
||
|
ext_modules = cythonize("package_manager.pyx")
|
||
|
)
|