beancount-lsp 0.0.1__cp310-abi3-manylinux_2_28_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ """Python wrapper for the beancount LSP server."""
2
+
3
+ from .cli import main
4
+
5
+ __all__ = ["main"]
Binary file
beancount_lsp/_lsp.pyi ADDED
@@ -0,0 +1,3 @@
1
+ from collections.abc import Sequence
2
+
3
+ def main(argv: Sequence[str]) -> None: ...
beancount_lsp/cli.py ADDED
@@ -0,0 +1,7 @@
1
+ import sys
2
+
3
+ from ._lsp import main as _main # pyright: ignore[reportMissingModuleSource]
4
+
5
+
6
+ def main(argv: list[str] | None = None) -> None:
7
+ _main(argv or sys.argv[1:])
beancount_lsp/py.typed ADDED
File without changes
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: beancount-lsp
3
+ Version: 0.0.1
4
+ Requires-Dist: beancount>=3,<4
5
+ Summary: Beancount LSP packaged for Python environments
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
8
+
9
+ Beancount LSP
10
+
@@ -0,0 +1,9 @@
1
+ beancount_lsp/__init__.py,sha256=8-ONHbvzA-Tg0v9XYD9-NUJV7D_zGvMmUFW8uNhld3E,94
2
+ beancount_lsp/_lsp.abi3.so,sha256=EO74aizoKVyX-Z4P6fuR1KXoOpbyTZWd1TtTi5B3gP4,4270496
3
+ beancount_lsp/_lsp.pyi,sha256=9mqx2geYmnCimbO2JzXLFBY911AdASgp-9QVcwgiJ2c,81
4
+ beancount_lsp/cli.py,sha256=BpVi03dNtyjgdPWhG0gG6RAWOBPYF4v9uSS94z-yuSQ,173
5
+ beancount_lsp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ beancount_lsp-0.0.1.dist-info/METADATA,sha256=BWe7PCtO3wXWdeP-axWbUc4iJbFlUzAiixEmD5tnxkE,252
7
+ beancount_lsp-0.0.1.dist-info/WHEEL,sha256=KbyCXo6t79r8VEWAKB3qvAdCclFkPJZBbPCO86mPOBA,109
8
+ beancount_lsp-0.0.1.dist-info/entry_points.txt,sha256=MRRsbQWer7Filfc4ORI6fuC8B54I-NEhB5bOFbT3e8A,104
9
+ beancount_lsp-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.11.5)
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-abi3-manylinux_2_28_aarch64
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ beancount-langauge-server=beancount_lsp.cli:main
3
+ beancount-lsp=beancount_lsp.cli:main