Metadata-Version: 2.1
Name: pyuno
Version: 0.1.1
Summary: 
Author: Kleomedes Dev Team
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: cosmpy (==0.6.2)
Description-Content-Type: text/markdown

<h1>
    Py(J)Uno
</h1>

<p>
A python library for interacting with juno block chain network.
</p>

## Project Description
This Python library is based on the [cosmpy](https://github.com/fetchai/cosmpy) open-source project, which provides tools for interacting with cosmos based blockchain networks.

## Attribution
This project uses and builds upon the cosmpy project, which is licensed under the Apache License v2.0. The original cosmpy project can be found at: https://github.com/fetchai/cosmpy

## Installing

## Installation

1. Install Poetry if it is not already installed on your system:

   ```bash
   pip install poetry
   ```
2. Clone the repository:

   ```bash
    git clone https://github.com/Jazz877/junopy.git
    cd pyuno
   ```

3. Setup the development environment:

   ```bash
   make new_env_dev
   ```
   This command will install all the dependencies and create a virtual environment for the project. It will also install the pre-commit hooks.
4. Activate the virtual environment:

   ```bash
   poetry shell
   ```

