Metadata-Version: 2.1
Name: leapchain
Version: 0.2.5
Summary: UNKNOWN
Home-page: https://github.com/Leacpchain/leapchain-python
Author: Leapchain
Author-email: contact@theleapchain.com
Maintainer: LeapChain
License: MIT
Description: <p align="center">
          <img alt="leapchain logo" src="https://user-images.githubusercontent.com/65713950/100157416-cf2bbc00-2eaa-11eb-95fe-3ef87a18ad93.png" width="620">
        </p>
        
        ## Overview
        
        Python library for leapchain digital currency.
        
        This library contains all of the core logic, shared functionality, and
        constants used by both the [Bank](https://github.com/LeapChain/Bank) and 
        [Validator](https://github.com/LeapChain/Validator) on leapchain network.
        
        ## Project Setup
        
        Follow the steps below to set up the project on your environment. If you run into any problems, feel free to leave a 
        GitHub Issue or reach out to any of our communities above.
        
        Install required packages:
        ```
        pip3 install -e .
        ```
        
        ## Testing
        
        To run tests:
        ```
        pytest
        ```
        
        To run tests with coverage report:
        ```
        pytest --cov-config=.coveragerc --cov=./src 
        ```
        
        To run linting:
        ```
        flake8 .
        ```
        
        ## Building
        
        The building and publishing of this package is automated through GitHub actions. To publish a new release, update the
        `./src/leapchain/__init__.py` file with the latest version number. The updated package will be published once the
        branch is merged into `master`.
        
        To produce a source distribution manually:
        ```
        python3 setup.py sdist
        ```
        
        ## License
        
        leapchain is [MIT licensed](http://opensource.org/licenses/MIT).
        
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
