Metadata-Version: 2.3
Name: range-digit
Version: 0.3.1
Summary: `range-digit` is library of decimal digit which has `low` and `sup`.
Project-URL: homepage, https://github.com/SaitoTsutomu/range-digit
Author-email: Saito Tsutomu <tsutomu7@hotmail.co.jp>
License: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Requires-Python: >=3.12
Description-Content-Type: text/markdown

## description

`range-digit` is library of decimal digit which has `low` and `sup`.

```
from range_digit import RangeDigit
from decimal import Decimal

d = RangeDigit("1.240")
print(d)  # 1.240
print(d - Decimal("1.2"))  # 0.040
print(d / 2)  # 0.620
print(d.low)  # 1.2395
print(d.sup)  # 1.2405
print(d.tostr())  # <RangeDigit [1.2395 - 1.2405)>
```
