summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-05-07 15:15:36 +0200
committerYuval Adam <_@yuv.al>2024-05-07 15:15:36 +0200
commite145993440b3ba8c65aa6fa0ef9c0f1040d1e70f (patch)
treeab308b7100c9ade805ae44bb28104ba6e902bdf3
parentff8a02880aa214bc95ec0b836a3a88853f7df110 (diff)
Update basic README
-rw-r--r--README.md13
-rw-r--r--pyproject.toml4
2 files changed, 15 insertions, 2 deletions
diff --git a/README.md b/README.md
index e69de29..e289a88 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,13 @@
+# ymlstash
+
+A simple ORM-like utility for operating on local YAML files via Python dataclasses.
+
+Define a dataclass:
+
+```python
+@dataclass
+class User:
+ name: str
+ age: int
+ active: bool
+```
diff --git a/pyproject.toml b/pyproject.toml
index 449b84e..4b48436 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
[tool.poetry]
name = "ymlstash"
-version = "0.1.0"
-description = ""
+version = "1.0.0"
+description = "A simple ORM-like utility for operating on local YAML files via Python dataclasses"
authors = ["Yuval Adam <_@yuv.al>"]
readme = "README.md"