1 Star 0 Fork 0

baimingjiang / clitool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 483 Bytes
一键复制 编辑 原始数据 按行查看 历史
baimingjiang 提交于 2022-05-30 16:36 . 切割spine资源
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'clitool',
version = '0.1',
packages = find_packages(),
include_package_data = True,
package_data = {
'': ['*.txt', '*.yaml'],
},
install_requires = [
'Click',
'colorama',
'pyyaml',
'progressbar2',
'pillow'
],
entry_points = '''
[console_scripts]
cct=clitool.cmd:main
''',
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wants_hot_pot/clitool.git
git@gitee.com:wants_hot_pot/clitool.git
wants_hot_pot
clitool
clitool
master

搜索帮助