summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-03-21 22:31:30 +0100
committerYuval Adam <_@yuv.al>2025-03-21 22:32:20 +0100
commitba6b6dc1d31aac87cd3469804e5f72ae524ee248 (patch)
tree52bd39474350eb9886d1c8cefac418771e4ddb7a
parent286391c8c237340429fbdd4d0a8f5fab796bdca4 (diff)
Add license in README and pyproject
-rw-r--r--README.md6
-rw-r--r--pyproject.toml3
2 files changed, 7 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9718618..08becf1 100644
--- a/README.md
+++ b/README.md
@@ -29,4 +29,8 @@ async def main():
# or collect them all
res = await pipe.collect()
-``` \ No newline at end of file
+```
+
+## License
+
+[MIT](LICENSE) \ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
index 948523c..7b0eb3c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,10 +3,11 @@ name = "rivulet"
version = "0.1.0"
description = "Lightweight asynchronous data streams"
readme = "README.md"
-requires-python = ">=3.8"
+license = "MIT"
authors = [
{name = "Yuval Adam", email = "_@yuv.al"},
]
+requires-python = ">=3.8"
dependencies = []
[dependency-groups]