Difficult-Rocket/libs/utils/logger_setup.py

14 lines
432 B
Python
Raw Normal View History

2022-09-06 21:47:46 +08:00
# -------------------------------
# Difficult Rocket
# Copyright © 2021-2022 by shenjackyuanjie 3695888@qq.com
# All rights reserved
# -------------------------------
# import setuptools
from setuptools import setup
from Cython.Build import cythonize
setup(name='logger',
zip_safe=False,
2022-09-09 22:02:05 +08:00
ext_modules=cythonize('logger.pyx',
language_level=3,
annotate=True))