Metadata-Version: 2.4
Name: math_operations_kseahtan
Version: 1.0.1
Summary: An interactive terminal calculator with basic and advanced math operations.
Author: Tan Kim Seah
Author-email: Tan Kim Seah <your-email@example.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file


Project Tree Structure

math_operations_project/ (Root directory) 
├── pyproject.toml 
├── README.md 
├── LICENSE 
├── tests/ 
│   └── test_operations.py 
└── math_operations_kseahtan/ (Actual code folder) 
    ├── calculate.py	
    ├── __init__.py 
    ├── basic/ 
    ├── init__.py 
    │   ├── add.py 
    │   └──  subtract.py       
    └── advanced/ 
        ├── __init__.py 
        ├── multiply.py 
        ├── divide.py
        ├── exponent.py
        └──  square_root.py


## Credits – 
Basic and Advanced math algorithms (with some modification) adapted from https://www.geeksforgeeks.org/python/python-packages/ by GreeksforGreeks (https://www.geeksforgeeks.org/)

## Licenses 
This project is licensed under the MIT License - see the LICENSE file for details. Educational snippets and package layout algorithms are adapted from GeeksforGeeks under their educational terms.

