Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions python/README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down
Loading