forked from zhuzichu520/PySide6-FluentUI-QML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 729 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="PySide6-FluentUI-QML",
version="1.6.7",
keywords="pyside fluent qml",
author="ChaChaL",
author_email="example@example.com",
description="A fluent design qml library based on PySide6",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/ChaXxl/PySide6-FluentUI-QML",
packages=setuptools.find_namespace_packages(
include=["FluentUI", "FluentUI.*"],
),
include_package_data=True,
install_requires=["PySide6>=6.6.1"],
classifiers=["Programming Language :: Python :: 3"],
)