Metadata-Version: 2.1
Name: digibyte-scrypt
Version: 1.1.0
Summary: Bindings for scrypt proof of work used by DigiByte
Home-page: https://pypi.org/project/digibyte_scrypt
Maintainer: YoshiJaeger
Maintainer-email: pypi@jaeger.berlin
License: GPLv3
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown

# DigiByte Scrypt (Python Bindings)

## Install

```bash
pip3 install digibyte_scrypt
```

## Usage

```python
import digibyte_scrypt

digibyte_scrypt.calcPoW(...)
```

## Changelog
`1.1.0`
- Added MANIFEST file to include c header file

`1.0.7`
- Removed obsolete debug log statement

`1.0.6`
- Added support for Python 3.10: This version defines `#define PY_SSIZE_T_CLEAN` before including `Python.h` 

`1.0.5`
- This version does not rely on `pypandoc` anymore as the new `setuptools` can handle markdown just well!
- Fixed a bunch of compilation issues

`1.0.0`
- Initial Development of scrypt (Integrated c module)
