Metadata-Version: 2.1
Name: turingproject
Version: 0.0.3
Summary: A small example package
Author-email: Vitalijus Kiubis <vitalijus.kiubis@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License

# Calculator Package

The Calculator package provides a Calculator class that allows you to perform basic arithmetic operations and manipulate a memory value.

## Installation

To install the Calculator package, you can use pip:

```
pip install calculator-package
```

## Usage

First, import the `Calculator` class from the package:

```python
from calculator_package import Calculator
```

Create a Calculator instance:

```python
calc = Calculator()
```

Perform calculations using the available methods:

```python
calc.add(5)
calc.subtract(2)
calc.multiply(3)
calc.divide(2)
calc.root(2)
```

Access the current memory value:

```python
print("Memory:", calc.memory)
```

Reset the memory:

```python
calc.reset_memory()
print("Memory after reset:", calc.memory)
```

Refer to the docstrings in the source code for detailed information on each method.

## Contributing

Contributions are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request on the [GitHub repository](https://github.com/your-username/calculator-package).

## License

This package is licensed under the [MIT License](LICENSE).

