File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77BUILDING.md
88/.vscode
99/build
10- test.py
11- report.docx
12- docx_comment_parser.pyd
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools" , " pybind11" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " docx-comment-parser"
7+ version = " 1.0.0"
8+ description = " Fast C++ library for extracting comment metadata from .docx files"
9+ readme = " README.md"
10+ requires-python = " >=3.8"
11+ authors = [{name = " nick-developer" }]
12+ classifiers = [
13+ " Programming Language :: Python :: 3" ,
14+ " Programming Language :: C++" ,
15+ " Operating System :: POSIX :: Linux" ,
16+ " Operating System :: Microsoft :: Windows" ,
17+ " Operating System :: MacOS" ,
18+ ]
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ def _is_mingw() -> bool:
103103 version = "1.0.0" ,
104104 author = "nick-developer" ,
105105 description = "Fast C++ library for extracting comment metadata from .docx files" ,
106- long_description = open ("README.md" ).read () if os .path .exists ("README.md" ) else "" ,
106+ long_description = open ("README.md" , encoding = "utf-8" ).read () if os .path .exists ("README.md" ) else "" ,
107107 ext_modules = [ext ],
108108 python_requires = ">=3.8" ,
109109 classifiers = [
You can’t perform that action at this time.
0 commit comments