Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
22 lines (17 loc) · 395 Bytes

File metadata and controls

22 lines (17 loc) · 395 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding:utf-8
from distutils.core import setup
from Cython.Build import cythonize
import os
'''
TODO:
使用Cpython 编译python文件,将.py文件编译成.c文件和.so文件
USAGE:
python setup.py build_ext --inplace
'''
# 在列表中输入需要加密的py文件
key_funs = ['get_time.py']
setup(
name="XX app",
ext_modules = cythonize(key_funs),
)
print('Done!')
Morty Proxy This is a proxified and sanitized view of the page, visit original site.