Metadata-Version: 2.1
Name: drf-crypto
Version: 0.1.0
Summary: Provide crypto payment essential to the drf-shop
Author-email: Xurvan <xurvan@tutanota.com>
Requires-Python: >=3.10
Requires-Dist: drf-shop>=0.1.1
Provides-Extra: dev
Requires-Dist: pre-commit>=2.20.0; extra == "dev"
Project-URL: source, https://github.com/xanigo/drf-crypto
Description-Content-Type: text/markdown

# DRF Crypto

This package only provides the basic requirements to create a payment system
for any blockchain. It means we will not support any blockchain payment with
this package. The reason is the dynamic nature of the blockchain world. They
change rapidly, and usually, everyone works with a specific blockchain. Also,
there are many different strategies to manage payments on a blockchain. For
example, you may want to verify your transactions with a tag (like a memo), or
maybe you want to create one wallet for each user or each transaction.

# Installation

```shell
pip install drf-crypto
```

Or, if you want the latest version, you can directly install the package from
the source code:

```shell
pip install https://github.com/xanigo/drf-crypto/archive/refs/heads/master.zip
```

Or using git:

```shell
pip install git+ssh://git@github.com/xanigo/drf-crypto.git
```

