From 8b60454fd07a448a7d0542d82218ba48a03d615b Mon Sep 17 00:00:00 2001
From: takunomi-build-bot <build-bot@takunomi.space>
Date: Sun, 13 Apr 2025 14:12:25 +0200
Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Repository=20layout=20updated=20?=
 =?UTF-8?q?to=20latest=20version?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
---
 README.md | 11 ++++++++++-
 setup.py  |  7 +++++--
 2 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 00b8e5f..001269c 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,16 @@ Group ApS.
 
 This project requires [Python](https://www.python.org/) 3.8 or newer.
 
-This project does not have any library requirements 😎
+All required libraries can be installed easily using:
+
+```bash
+pip install -r requirements.txt
+```
+
+Full list of requirements:
+- [coincurve](https://pypi.org/project/coincurve/)
+- [pbcabi](https://gitfub.space/Jmaa/pbcabi)
+
 
 ## Contributing
 
diff --git a/setup.py b/setup.py
index ba9b1e1..edb7c1c 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ from setuptools import setup
 PACKAGE_NAME = 'pbc_client'
 
 PACKAGE_DESCRIPTION = """
- # Partisia Blockchain Client
+# Partisia Blockchain Client
 
 Unofficial library for reading contract states from Partisia Blockchain.
 
@@ -35,7 +35,10 @@ with open(PACKAGE_NAME + '/_version.py') as f:
     version = parse_version_file(f.read())
 
 
-REQUIREMENTS_MAIN = []
+REQUIREMENTS_MAIN = [
+    'coincurve',
+    'pbcabi @ git+https://gitfub.space/Jmaa/pbcabi',
+]
 REQUIREMENTS_TEST = []