textgen-service / setup.py
Sathvik-kota's picture
Update setup.py
3216412 verified
raw
history blame contribute delete
201 Bytes
from setuptools import setup
from mypyc.build import mypycify
setup(
name="cyberguard_core",
ext_modules=mypycify(
["core.py"],
opt_level="3",
debug_level="0"
),
)