-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (19 loc) · 853 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /user/bin/python3
# Copyright (c) 2024. All rights reserved.
# This source code is licensed under the CC BY-NC-SA
# (Creative Commons Attribution-NonCommercial-NoDerivatives) License, By Xiao Songtao.
# This software is protected by copyright law. Reproduction, distribution, or use for commercial
# purposes is prohibited without the author's permission. If you have any questions or require
# permission, please contact the author: 2207150234@st.sziit.edu.cn
# -------------------------<Lenovo>----------------------------
# 传建时间: 2024/5/2 下午4:35
# 当前项目名: Python
# 编码模式: utf-8
# 注释:
# -------------------------<Lenovo>----------------------------
from setuptools import setup
from Cython.Build import cythonize
# python setup.py build_ext --inplace
setup(
ext_modules=cythonize("cubicEquation.py")
)