Metadata-Version: 2.1
Name: thenewboston-ml-dev
Version: 0.2.3
Summary: UNKNOWN
Home-page: https://github.com/thenewboston-developers/thenewboston-python
Author: Bucky Roberts
Author-email: buckyroberts@gmail.com
Maintainer: Thenewboston
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: Django (==3.1.8)
Requires-Dist: PTable (==0.9.2)
Requires-Dist: PyNaCl (==1.4.0)
Requires-Dist: channels-redis (==2.4.2)
Requires-Dist: channels (==2.4.0)
Requires-Dist: django-cors-headers (==3.7.0)
Requires-Dist: django-debug-toolbar (==3.2)
Requires-Dist: django-filter (==2.4.0)
Requires-Dist: django-redis (==4.12.1)
Requires-Dist: djangorestframework (==3.12.2)
Requires-Dist: factory-boy (==3.2.0)
Requires-Dist: flake8-bugbear (==20.11.1)
Requires-Dist: flake8-builtins (==1.5.3)
Requires-Dist: flake8-coding (==1.3.2)
Requires-Dist: flake8-docstrings (==1.5.0)
Requires-Dist: flake8-import-order (==0.18.1)
Requires-Dist: flake8-polyfill (==1.0.2)
Requires-Dist: flake8-quotes (==3.2.0)
Requires-Dist: flake8 (==3.8.4)
Requires-Dist: freezegun (==1.1.0)
Requires-Dist: iptools (==0.7.0)
Requires-Dist: pycodestyle (==2.6.0)
Requires-Dist: pytest-asyncio (==0.14.0)
Requires-Dist: pytest-cov (==2.11.1)
Requires-Dist: pytest-django (==4.1.0)
Requires-Dist: pytest-xdist (==2.2.1)
Requires-Dist: pytest (==6.2.2)
Requires-Dist: requests-mock (==1.8.0)
Requires-Dist: requests (==2.25.1)
Requires-Dist: sentry-sdk (==0.19.5)
Requires-Dist: setuptools (==50.3.2)
Requires-Dist: wheel (==0.35.1)

<p align="center">
  <img alt="thenewboston logo" src="https://user-images.githubusercontent.com/65713950/100157416-cf2bbc00-2eaa-11eb-95fe-3ef87a18ad93.png" width="620">
</p>

## Overview

Python library for thenewboston digital currency.

This library contains all of the core logic, shared functionality, and
constants used by both the [Bank](https://github.com/thenewboston-developers/Bank) and 
[Validator](https://github.com/thenewboston-developers/Validator) on thenewboston 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/thenewboston/__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
```

## Community

Join the community to stay updated on the most recent developments, project roadmaps, and random discussions about completely unrelated topics.

- [thenewboston.com](https://thenewboston.com/)
- [Discord](https://discord.gg/thenewboston)
- [Facebook](https://www.facebook.com/TheNewBoston-464114846956315/)
- [Instagram](https://www.instagram.com/thenewboston_official/)
- [LinkedIn](https://www.linkedin.com/company/thenewboston-developers/)
- [Reddit](https://www.reddit.com/r/thenewboston/)
- [Twitch](https://www.twitch.tv/thenewboston/videos)
- [Twitter](https://twitter.com/thenewboston_og)
- [YouTube](https://www.youtube.com/user/thenewboston)

## Donate

All donations will go to thenewboston to help fund the team to continue to develop the community and create new content.

| Coin | Address |
|-|-|
| ![thenewboston Logo](https://github.com/thenewboston-developers/Website/raw/development/src/assets/images/thenewboston.png) | b6e21072b6ba2eae6f78bc3ade17f6a561fa4582d5494a5120617f2027d38797 |
| ![Bitcoin Logo](https://github.com/thenewboston-developers/Website/raw/development/src/assets/images/bitcoin.png) | 3GZYi3w3BXQfyb868K2phHjrS4i8LooaHh |
| ![Ethereum Logo](https://github.com/thenewboston-developers/Website/raw/development/src/assets/images/ethereum.png) | 0x0E38e2a838F0B20872E5Ff55c82c2EE7509e6d4A |

## License

thenewboston is [MIT licensed](http://opensource.org/licenses/MIT).


