setup.py 1.2 KB
Newer Older
之一Yo's avatar
之一Yo 已提交
1 2 3 4 5 6 7 8
import setuptools


with open('README.md', encoding='utf-8') as f:
    long_description = f.read()

setuptools.setup(
    name="PyQt-Fluent-Widgets",
之一Yo's avatar
之一Yo 已提交
9
    version="0.6.6",
之一Yo's avatar
之一Yo 已提交
10 11 12
    keywords="pyqt fluent widgets",
    author="zhiyiYo",
    author_email="shokokawaii@outlook.com",
之一Yo's avatar
之一Yo 已提交
13
    description="A fluent design widgets library based on PyQt5",
之一Yo's avatar
之一Yo 已提交
14 15
    long_description=long_description,
    long_description_content_type='text/markdown',
之一Yo's avatar
之一Yo 已提交
16
    license="GPLv3",
之一Yo's avatar
之一Yo 已提交
17 18 19
    url="https://github.com/zhiyiYo/PyQt-Fluent-Widgets",
    packages=setuptools.find_packages(),
    install_requires=[
之一Yo's avatar
之一Yo 已提交
20
        "PyQt5>=5.15.0",
之一Yo's avatar
之一Yo 已提交
21 22 23
        "PyQt5-Frameless-Window",
        "darkdetect",
    ],
之一Yo's avatar
之一Yo 已提交
24 25 26
    extras_require = {
        'full': ['scipy', 'pillow', 'colorthief']
    },
之一Yo's avatar
之一Yo 已提交
27 28
    classifiers=[
        'Programming Language :: Python :: 3',
之一Yo's avatar
之一Yo 已提交
29
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
之一Yo's avatar
之一Yo 已提交
30
        'Operating System :: OS Independent'
31 32 33 34 35 36
    ],
    project_urls={
        'Documentation': 'https://pyqt-fluent-widgets.readthedocs.io/',
        'Source Code': 'https://github.com/zhiyiYo/PyQt-Fluent-Widgets',
        'Bug Tracker': 'https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues',
    }
之一Yo's avatar
之一Yo 已提交
37
)