mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-03 10:35:15 +08:00
23 lines
492 B
Python
23 lines
492 B
Python
from distutils.core import setup
|
|
|
|
from Cython.Build import cythonize
|
|
|
|
module_list = ['app/helper/sites.py']
|
|
|
|
setup(
|
|
name="MoviePilot",
|
|
author="jxxghp",
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
ext_modules=cythonize(
|
|
module_list=module_list,
|
|
nthreads=0,
|
|
compiler_directives={
|
|
"language_level": "3",
|
|
"binding": False,
|
|
"nonecheck": False
|
|
},
|
|
),
|
|
script_args=["build_ext", "-j", '2', "--inplace"],
|
|
)
|