mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
7a64a5cba6
* +cython.org * Remove useless ls cmd * removed dependency on self--oops * include compiler, remove non-present bins * requires c compiler at runtime --------- Co-authored-by: James Reynolds <magnsuviri@me.com> Co-authored-by: Jacob Heider <jacob@tea.xyz>
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")
|
|
)
|