from setuptools import setup, find_packages setup( name="MagicWord", version="0.2.0", description="隐私学习软件 - 一款通过打字练习来学习文档内容的工具", author="MagicWord Team", packages=find_packages(where="src"), package_dir={"": "src"}, include_package_data=True, 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", )