You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
385 B
Python
13 lines
385 B
Python
from distutils.core import setup
|
|
from distutils.extension import Extension
|
|
from Cython.Distutils import build_ext
|
|
ext_modules = [
|
|
Extension("detect", ["detect.py"]),
|
|
#Extension("mymodule2", ["mymodule2.py"]),
|
|
# ... all your modules that need be compiled ...
|
|
]
|
|
setup(
|
|
name = 'Item Sorter',
|
|
cmdclass = {'build_ext': build_ext},
|
|
ext_modules = ext_modules
|
|
) |