14 lines
432 B
Python
14 lines
432 B
Python
# -------------------------------
|
|
# 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,
|
|
ext_modules=cythonize('logger.pyx',
|
|
language_level=3,
|
|
annotate=True))
|