Metadata-Version: 2.1
Name: rincalculate
Version: 0.0.2
Summary: A small calculate package
Author: Rinchen
Author-email: rinchen1234@example.com
Keywords: calculate,cal
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# for calculation 
- this package is for practice 

# usage
- which have cube method
-and square method
```
pip install rincalculate
```
## Example
```
#test.py
from calculate import cube
from calculate import root
cube(3)
root(33)
```
s
