Metadata-Version: 2.1
Name: cu-numbers
Version: 1.0.0
Summary: Church Slavonic script numbers conversion
Home-page: https://github.com/endrain/cu-numbers
Author: Andrei Shur
Author-email: amshoor@gmail.com
License: MIT
Keywords: church slavonic,conversion
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Religion
Classifier: Intended Audience :: Science/Research
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# cu-numbers

A program for numbers conversion between Church Slavonic script (*further CU*) and Arabic numerals.

## Background

See [Introduction](./INTRODUCTION.md) to learn about CU numbers.

## Requirements

    Python >= 3.7

## Installation

    pip install cu-numbers

## Usage

    import cunumbers

    #   Convert an Arabic number to CU
    #   Requires non-zero int, returns str

    a = cunumbers.arab_to_cu(1)

    #   Convert a CU number to an Arabic
    #   Requires str, returns int

    b = cunumbers.cu_to_arab("а҃")

## Contributing

Create an issue describing a bug or suggestion, then create a pull request mentioning the issue.

## Feedback

Drop me a line: amshoor@gmail.com

## License

See [LICENSE](./LICENSE).

