from setuptools import setup, find_packages setup( name="MagicWord", version="1.0.0", description="隐私学习软件 - 一款通过打字练习来学习文档内容的工具", author="MagicWord Team", packages=find_packages(where="src"), package_dir={"": "src"}, include_package_data=True, package_data={ "": ["*.png", "*.ico", "*.json", "*.qss", "*.txt"], }, install_requires=[ "python-docx>=0.8.10", "PyPDF2>=1.26.0", "ebooklib>=0.17.1", "PyQt5>=5.15.0", "requests>=2.25.1", "beautifulsoup4>=4.11.0", "pillow>=9.0.0", "chardet>=4.0.0", ], entry_points={ "console_scripts": [ "magicword=main:main", ], }, python_requires=">=3.6", classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Education", "Topic :: Office/Business", ], )