You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Curriculum_Design/setup.py

27 lines
704 B

from setuptools import setup, find_packages
setup(
name="MagicWord",
version="0.1.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",
)