From f41781edac66f00ba6ebe83d36dcf9bc1c667a55 Mon Sep 17 00:00:00 2001 From: mio Date: Sat, 21 Dec 2024 22:07:12 +0800 Subject: [PATCH] Rename to libmdbx --- README.md | 2 +- pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6a49cdf..58d6fd6 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Originally forked from [libmdbx](https://github.com/erthink/libmdbx/tree/python- Try it with ```bash -pip install mdbx +pip install libmdbx ``` Contributions and feedbacks are highly welcome. I'm developing a few more pythonic features and adding support for cursors iterating dupsort databases. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 49246a4..c18cf7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "mdbx" +name = "libmdbx" version = "0.1.0" description = "The python bindings to libmdbx." homepage = "https://github.com/wtdcode/mdbx-py" @@ -11,6 +11,9 @@ keywords = [ "kvdb", "bindings" ] +packages = [ + {include = "mdbx"} +] include = [ { path = "libmdbx/*", format = "sdist"}, { path = "mdbx/lib/*", format = "wheel" },