优化setup.py
This commit is contained in:
parent
45c201772e
commit
95d5e864f4
1 changed files with 26 additions and 15 deletions
21
setup.py
21
setup.py
|
@ -2,11 +2,10 @@
|
|||
This is a setup.py script
|
||||
"""
|
||||
from setuptools import setup, find_packages
|
||||
from glob import glob
|
||||
|
||||
VERSION = "0.1"
|
||||
INSTALL = ["oss2", "notify2", "dbus-python", "PyQt5", "json"]
|
||||
PACKAGES = find_packages()
|
||||
|
||||
setup(
|
||||
name="PyQtPicUpload",
|
||||
version=VERSION,
|
||||
|
@ -14,7 +13,7 @@ setup(
|
|||
author_email="my@liyp.cc",
|
||||
description="a OSS Image Upload Tool",
|
||||
license="GPL3",
|
||||
include_package_data=True,
|
||||
|
||||
url="https://git.liyp.cc/xmengnet/PyQtPicUpload",
|
||||
classifiers=[
|
||||
'Programming Language :: Python :: 3',
|
||||
|
@ -28,8 +27,20 @@ setup(
|
|||
|
||||
platforms=["POSIX"],
|
||||
keywords=["IMAGE", "OSS"],
|
||||
exclude_package_date={'test':['']},
|
||||
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",
|
||||
)
|
Loading…
Reference in a new issue