2 Star 0 Fork 0

且听风吟/bitcash

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.py 440 Bytes
一键复制 编辑 原始数据 按行查看 历史
ofek 提交于 2017-02-20 01:38 . more work
import os
import subprocess
def main():
distro_dir = os.path.dirname(os.path.abspath(__file__))
dist_dir = os.path.join(distro_dir, 'dist')
if not os.path.exists(dist_dir):
os.mkdir(dist_dir)
os.chdir(dist_dir)
for file in os.listdir(os.getcwd()):
os.remove(file)
os.chdir(distro_dir)
subprocess.call(['python', 'setup.py', 'bdist_wheel', '--universal'])
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/lylinux/bitcash.git
git@gitee.com:lylinux/bitcash.git
lylinux
bitcash
bitcash
master

搜索帮助