mirror of
https://github.com/azaion/loader.git
synced 2026-04-22 06:46:32 +00:00
initial commit
Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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
|
||||
)
|
||||
Reference in New Issue
Block a user