加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.71 KB
一键复制 编辑 原始数据 按行查看 历史
hrpzcf 提交于 2022-12-14 00:53 . 更新 License
# coding: utf-8
from setuptools import *
from source.awespykit.__info__ import *
description = "一个关于 Python 的 GUI 工具箱:包管理器、程序打包、切换 pip 源、模块安装包下载。"
try:
with open("README.md", "rt", encoding="utf-8") as md:
long_description = md.read()
except Exception:
long_description = description
setup(
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
name=NAME,
url=URL,
author=AUTHOR,
version=VERSION,
license="GNU General Public License v3 (GPLv3)",
install_requires=[
"chardet>=4.0.0",
"PyQt5>=5.15.2",
"fastpip>=1.5.0,<2.0",
"pywin32>=224",
],
package_dir={"": "source"},
packages=find_packages("source"),
python_requires=">=3.7",
platforms=["win32", "win_amd64"],
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Environment :: Win32 (MS Windows)",
],
package_data={"awespykit": ["help/About.html"]},
entry_points={
"console_scripts": ["rpk = awespykit.runpykit:run_pykit_sysexit_when_close"]
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化