加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
l0n0l 提交于 2021-02-19 11:18 . 更新readme
import setuptools
# 读取项目的readme介绍
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setuptools.setup(
name="l0n0lhttputils", # 项目名称,保证它的唯一性,不要跟已存在的包名冲突即可
version="1.0.6",
author="l0n0l", # 项目作者
author_email="1038352856@qq.com",
description="平时常用的http server|mysql|腾讯cos|微信公众号等库的集合", # 项目的一句话描述
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitee.com/l00n00l/http_server_utils", # 项目地址
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
install_requires=[
"pymysql",
"aiohttp[speedups]",
"requests",
"cos-python-sdk-v5",
"tencentcloud-sdk-python",
"pycryptodome",
"pyyaml",
"xlrd"
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化