1 Star 1 Fork 1

木豆/sherry

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 894 Bytes
一键复制 编辑 原始数据 按行查看 历史
木豆 提交于 2021-07-20 10:49 +08:00 . upload pypi
# coding=utf-8
"""
create by pymu
on 2021/4/29
at 16:30
具体命令详解,请参阅:https://blog.konghy.cn/2018/04/29/setup-dot-py/
"""
from setuptools import setup, find_packages
from sherry import __sherry_info__
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
]
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
long_description_content_type="text/markdown",
long_description=long_description,
platforms=['OS-independent'],
classifiers=classifiers,
packages=find_packages(),
include_package_data=True,
install_requires=['QtAwesome>=0.7.0', 'PyQt5>=5.12'],
python_requires='>=3.5',
**__sherry_info__
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/pymu/sherry.git
git@gitee.com:pymu/sherry.git
pymu
sherry
sherry
main

搜索帮助