1 Star 11 Fork 1

hyjsunny/yeti

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 419 Bytes
一键复制 编辑 原始数据 按行查看 历史
hyjsunny 提交于 2021-09-29 14:01 . first commit
# !/usr/bin/env python3.9
# -*-coding:utf-8 -*-
"""
# Author : Sunny
# @Time : 2021/8/3 5:25 pm
# @File : setup.py
# @Software: PyCharm
"""
from setuptools import setup
setup(
name='yourscript',
version='0.1.0',
py_modules=['yourscript'],
install_requires=[
'Click',
],
entry_points={
'console_scripts': [
'yourscript = yourscript:cli',
],
},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hyjsunny/yeti.git
git@gitee.com:hyjsunny/yeti.git
hyjsunny
yeti
yeti
master

搜索帮助