import setuptools with open('README.md', encoding='utf-8') as f: long_description = f.read() setuptools.setup( name="PyQt-Fluent-Widgets", version="0.2.5", 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="MIT", url="https://github.com/zhiyiYo/PyQt-Fluent-Widgets", packages=setuptools.find_packages(), install_requires=[ "PyQt5-Frameless-Window", "darkdetect", ], extras_require = { 'full': ['scipy', 'pillow', 'colorthief'] }, classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent' ] )