forked from zhiyiYo/PyQt-Fluent-Widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.13 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
36
37
import setuptools
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name="PyQt-Fluent-Widgets",
version="1.5.6",
keywords="pyqt fluent widgets",
author="zhiyiYo",
author_email="shokokawaii@outlook.com",
description="A fluent design widgets library based on PyQt5",
long_description=long_description,
long_description_content_type='text/markdown',
license="GPLv3",
url="https://qfluentwidgets.com",
packages=setuptools.find_packages(),
install_requires=[
"PyQt5>=5.15.0",
"PyQt5-Frameless-Window>=0.3.3",
"darkdetect",
],
extras_require = {
'full': ['scipy', 'pillow', 'colorthief']
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent'
],
project_urls={
'Documentation': 'https://qfluentwidgets.com/',
'Source Code': 'https://github.com/zhiyiYo/PyQt-Fluent-Widgets',
'Bug Tracker': 'https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues',
}
)