libledger 0.1.0__tar.gz

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,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: libledger
3
+ Version: 0.1.0
4
+ Summary: Library functions to deal with a JSON-based, double-entry-bookkeeping ledger file format.
5
+ Keywords: ledger,bookkeeping,double-entry
6
+ Author: siru
7
+ Author-email: siru <email@siru.ink>
8
+ License-Expression: GPL-3.0-only
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: Natural Language :: English
13
+ Classifier: Programming Language :: Python :: 3.14
14
+ Classifier: Typing :: Typed
15
+ Classifier: Topic :: Utilities
16
+ Requires-Python: >=3.14
17
+ Project-URL: Homepage, https://www.libledger.siru.ink/
18
+ Project-URL: Repository, https://git.siru.ink/siru/libledger
19
+ Description-Content-Type: text/markdown
20
+
21
+ # Currently in development
22
+
23
+ This release is not ready for production use. It is meant to hold the namespace on pypi.org.
@@ -0,0 +1,3 @@
1
+ # Currently in development
2
+
3
+ This release is not ready for production use. It is meant to hold the namespace on pypi.org.
@@ -0,0 +1,24 @@
1
+ [project]
2
+ name = "libledger"
3
+ version = "0.1.0"
4
+ description = "Library functions to deal with a JSON-based, double-entry-bookkeeping ledger file format."
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "siru", email = "email@siru.ink" }
8
+ ]
9
+ requires-python = ">=3.14"
10
+ dependencies = []
11
+ license = "GPL-3.0-only"
12
+ keywords = ["ledger","bookkeeping","double-entry"]
13
+ classifiers = ["Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Natural Language :: English", "Programming Language :: Python :: 3.14", "Typing :: Typed", "Topic :: Utilities"]
14
+
15
+ [project.urls]
16
+ Homepage = "https://www.libledger.siru.ink/"
17
+ # Documentation = "https://www.libcolor.siru.ink/"
18
+ Repository = "https://git.siru.ink/siru/libledger"
19
+ # Issues = "https://github.com/me/spam/issues"
20
+ # Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
21
+
22
+ [build-system]
23
+ requires = ["uv_build>=0.10.7,<0.11.0"]
24
+ build-backend = "uv_build"
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from libledger!"
File without changes