mirror of
https://github.com/azaion/loader.git
synced 2026-04-22 09:26:33 +00:00
941b8199aa
Made-with: Cursor
28 lines
753 B
Python
28 lines
753 B
Python
from setuptools import setup, Extension
|
|
from Cython.Build import cythonize
|
|
|
|
extensions = [
|
|
Extension('constants', ['constants.pyx']),
|
|
Extension('credentials', ['credentials.pyx']),
|
|
Extension('user', ['user.pyx']),
|
|
Extension('security', ['security.pyx']),
|
|
Extension('hardware_service', ['hardware_service.pyx']),
|
|
Extension('cdn_manager', ['cdn_manager.pyx']),
|
|
Extension('api_client', ['api_client.pyx']),
|
|
]
|
|
|
|
setup(
|
|
name="azaion.loader",
|
|
ext_modules=cythonize(
|
|
extensions,
|
|
compiler_directives={
|
|
"language_level": 3,
|
|
"emit_code_comments": False,
|
|
"binding": True,
|
|
'boundscheck': False,
|
|
'wraparound': False,
|
|
}
|
|
),
|
|
zip_safe=False
|
|
)
|