-
大小: 748KB文件类型: .gz金币: 1下载: 0 次发布日期: 2021-06-10
- 语言: 其他
- 标签: setuptools pip python
资源简介
setuptools-40.4.3.tar.gz源码 安装pip3所需 安装pip3所需
代码片段和文件信息
“““
If setuptools is not already installed in the environment it‘s not possible
to invoke setuptools‘ own commands. This routine will bootstrap this local
environment by creating a minimal egg-info directory and then invoking the
egg-info command to flesh out the egg-info directory.
“““
from __future__ import unicode_literals
import os
import sys
import textwrap
import subprocess
import io
minimal_egg_info = textwrap.dedent(“““
[distutils.commands]
egg_info = setuptools.command.egg_info:egg_info
[distutils.setup_keywords]
include_package_data = setuptools.dist:assert_bool
install_requires = setuptools.dist:check_requirements
extras_require = setuptools.dist:check_extras
entry_points = setuptools.dist:check_entry_points
[egg_info.writers]
dependency_links.txt = setuptools.command.egg_info:overwrite_arg
entry_points.txt = setuptools.command.egg_info:write_entries
requires.txt = setuptools.command.egg_info:write_requirements
“““)
def ensure_egg_info():
if os.path.exists(‘setuptools.egg-info‘):
return
print(“adding minimal entry_points“)
build_egg_info()
def build_egg_info():
“““
Build a minimal egg-info enough to invoke egg_info
“““
os.mkdir(‘setuptools.egg-info‘)
with io.open(‘setuptools.egg-info/entry_points.txt‘ ‘w‘) as ep:
ep.write(minimal_egg_info)
def run_egg_info():
cmd = [sys.executable ‘setup.py‘ ‘egg_info‘]
print(“Regenerating egg_info“)
subprocess.check_call(cmd)
print(“...and again.“)
subprocess.check_call(cmd)
def main():
ensure_egg_info()
run_egg_info()
__name__ == ‘__main__‘ and main()
- 上一篇:keymap键盘映射
- 下一篇:一级倒立摆的模糊控制
相关资源
- PyPDF2模块和英文文档
- MSTCPIP.H
- 电子科大TCPIP教程课件
- 股票查询工具(含前端页面)
- pandas入门实践教程--二十分钟轻松搞定
- SVR支持向量机回归原理解析.pdf
- svm实现是否带眼镜
- 一个接糖果的pygame小游戏
-
WumpusWorld 使用 Knowledgeba
se的AI 实现 - glut搭建glut32bit和64bit
- 双管道CreatePipe与cmd.exe进程间通信的有
- 基于Socket的网络通信大作业 含可运行
- AppleACPIPlatform.kext+IOPCIFamily.kext
- 打字案例.zip
- tensorflow实现猫狗识别
- 万有引力算法GSA-master.zip
- 点云数据ply格式
- PyQt5快速开发与实践
- Arcgis批量裁剪
- Regression回归算法代码
- PyQt5系列教程(二)利用QtDesigner设计
- KUKA和康耐视相机TCPIP通讯.pptx
- 简单贝叶斯实现垃圾邮件分类
- Opencv+Tensorflow入门人工智能处理无密完
- 解析ip数据包附mstcpip.h
- 运用ID3算法训练决策树
- BPNet多层网络学习算法可以实现有效的
- 文书网最新版getKey.js(获取vl5x值)
- djangol实现学生管理网站
- 基于西瓜书的聚类代码和介绍
评论
共有 条评论