优化setup.py

This commit is contained in:
liyp 2022-03-27 22:42:41 +08:00
parent 45c201772e
commit 95d5e864f4

View file

@ -2,11 +2,10 @@
This is a setup.py script This is a setup.py script
""" """
from setuptools import setup, find_packages from setuptools import setup, find_packages
from glob import glob
VERSION = "0.1" VERSION = "0.1"
INSTALL = ["oss2", "notify2", "dbus-python", "PyQt5", "json"] INSTALL = ["oss2", "notify2", "dbus-python", "PyQt5", "json"]
PACKAGES = find_packages()
setup( setup(
name="PyQtPicUpload", name="PyQtPicUpload",
version=VERSION, version=VERSION,
@ -14,22 +13,34 @@ setup(
author_email="my@liyp.cc", author_email="my@liyp.cc",
description="a OSS Image Upload Tool", description="a OSS Image Upload Tool",
license="GPL3", license="GPL3",
include_package_data=True,
url="https://git.liyp.cc/xmengnet/PyQtPicUpload", url="https://git.liyp.cc/xmengnet/PyQtPicUpload",
classifiers=[ classifiers=[
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.10',
'Operating System :: POSIX', 'Operating System :: POSIX',
], ],
platforms=["POSIX"], platforms=["POSIX"],
keywords=["IMAGE","OSS"], keywords=["IMAGE", "OSS"],
exclude_package_date={'test':['']},
install_requires=INSTALL, install_requires=INSTALL,
packages=PACKAGES, packages=find_packages(),
# 安装过程中需要安装的静态文件如配置文件、service文件、图片等
data_files=[
('resource', ['resource/current.qss']),
('image', ['images/up.png', 'images/upload.png', 'images/setting_icon.png', 'images/icon.svg'])
],
include_package_data=True,
# 用来支持自动生成脚本,安装后会自动生成 /usr/bin/foo 的可执行文件
# 该文件入口指向 foo/main.py 的main 函数
entry_points={
'console_scripts': [
'picupload = main.main:main'
]
},
python_requires=">=3.6", python_requires=">=3.6",
) )