-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 718 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 718 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
# -*- 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",
packages =find_packages(),
version="2.8.25.1",
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",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)