-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 932 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 932 Bytes
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
# -*- coding:utf-8 -*-
# @time:2022/12/1018:31
# @author:LX
# @file:setup.py
# @software:PyCharm
from distutils.core import setup
from setuptools import find_packages
setup(
name="PyQtGuiLib-PySide",
packages =find_packages(),
version="1.3",
author="LX",
author_email = "lx984608061@163.com",
description = "Python version of the qt component library.",
long_description=open('README.md', 'r',encoding="utf8").read(),
long_description_content_type="text/markdown",
url = "https://github.com/LX-sys/PyQtGuiLib-PySide",
license= "GPL",
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
)