From 7a4593a2a82de1a674629c2272eef85e6dddb7ce Mon Sep 17 00:00:00 2001 From: Maciej Kula Date: Wed, 20 May 2026 04:17:01 +0200 Subject: [PATCH] update Python package metadata --- python/README.md | 8 ++------ python/pyproject.toml | 3 ++- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/python/README.md b/python/README.md index 8b71b59..777baf1 100644 --- a/python/README.md +++ b/python/README.md @@ -1,15 +1,11 @@ -# samp +# samp-core Python implementation of [SAMP](https://github.com/samp-org/samp) (Substrate Account Messaging Protocol). Crypto operations use a native Rust extension via PyO3. ## Install -Requires a Rust toolchain for the native crypto extension. - ``` -pip install maturin -cd python/samp-crypto && maturin develop && cd ../.. -cd python && pip install -e . +pip install samp-core ``` ## Usage diff --git a/python/pyproject.toml b/python/pyproject.toml index 33993f7..478be82 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,8 +1,9 @@ [project] name = "samp-core" -version = "1.1.0" +version = "1.1.1" description = "Substrate Account Messaging Protocol -- Python SDK" license = "MIT" +readme = "README.md" requires-python = ">=3.9" dependencies = ["samp-crypto"]