We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77ccd98 + 07f8d14 commit ff017a5Copy full SHA for ff017a5
changelog.d/34.fixed.md
@@ -0,0 +1 @@
1
+Fixed `rtfparse --help`, correct entrypoint in `pyproject.toml`
pyproject.toml
@@ -50,7 +50,7 @@ Issues = "https://github.com/fleetingbytes/rtfparse/issues"
50
Source = "https://github.com/fleetingbytes/rtfparse"
51
52
[project.scripts]
53
-rtfparse = "rtfparse:main"
+rtfparse = "rtfparse.cli:main"
54
55
[tool.hatch.version]
56
path = "src/rtfparse/__about__.py"
src/rtfparse/__about__.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
2
3
4
-__version__ = "0.9.1"
+__version__ = "0.9.2"
src/rtfparse/__init__.py
@@ -6,4 +6,5 @@
6
7
if __name__ == "__main__":
8
from rtfparse.cli import main
9
+
10
main()
0 commit comments