Metadata-Version: 2.4
Name: complexint
Version: 0.0.1
Summary: A complexint class, for using large complex numbers which exceed the precision offered by the builtin complex which uses doubles.
Author-email: Ryan Heard <ryanwheard@gmail.com>
License-Expression: MIT
Project-URL: Repository, https://github.com/rheard/complexint
Keywords: complex,math
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

This library provides a `complexint` class.

This class acts just like Python's built-in `complex` except it is backed by Python integers instead of doubles.
    This allows for infinite precision.

## Example

```python
from complexint import complexint

a = complexint(1, 2)
b = complexint(3, 6)

c = a * b
print(c)  # Outputs "-9+12j"
```
