Skip to content

Commit

Permalink
fix: update packaging method
Browse files Browse the repository at this point in the history
  • Loading branch information
blue authored and blue committed Jul 23, 2024
1 parent 51457df commit 3ad1627
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@ def parse_requirements(filename):
setup(
name="fairy_doc", # 项目名
version=__version__, # 自动从tag中获取版本号
packages=find_packages() + ["magic_doc.bin", "magic_doc.resources", "magic_doc/contrib/magic_html/mmltex"], # 包含所有的包
packages=find_packages() + ["magic_doc.bin", "magic_doc.resources"], # 包含所有的包
package_data={
"magic_doc.bin": ["**"], # 包含magic_doc.bin目录下的所有文件
"magic_doc.resources": ["**"], # 包含magic_doc.resources目录下的所有文件
"magic_doc.contrib.office.formula": ["**"], # 包含magic_doc.contrib.office.formula目录下的所有文件
"magic_doc/contrib/magic_html/mmltex": ["**"],
},
license='Apache 2.0',
extras_require={
Expand Down

0 comments on commit 3ad1627

Please sign in to comment.