-
Notifications
You must be signed in to change notification settings - Fork 83
/
setup.py
35 lines (32 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import os
from setuptools import setup
from setuptools import find_packages
from qpt.version import version
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.MD"), encoding='utf-8') as f:
long_description = '\n' + f.read()
# long_description = '\n' + "https://github.com/QPT-Family/QPT"
setup(
name='QPT',
version=version,
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/GT-ZhangAcer/QPT',
license='LGPL',
author='GT-ZhangAcer',
author_email='zhangacer@foxmail.com',
description='QPT-Python环境打包工具',
install_requires=['wget',
"click",
"pefile",
"pillow",
"toml",
"pip>=23.1",
"QPT-SDK"],
python_requires='>=3.8',
include_package_data=True,
entry_points={
'console_scripts': [
'qpt = qpt.command:cli',
]}
)