Metadata-Version: 2.4
Name: mathcom
Version: 0.1
Summary: World Great Math - Mathcom
Project-URL: Homepage, https://github.com/LeThanhNhan2013/mathcom
Project-URL: Issues, https://github.com/LeThanhNhan2013/mathcom/issues
Author-email: LeThanhNhan2013 <lethanhnhan1172@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=2.5
Description-Content-Type: text/markdown

# Mathcom - a powerful math modules only for Python
## 1. Infomation
Version: 0.1\
Released Date: 8/1/2025
## 2. How to install - uninstall
To install mathcom, simply enter this command code*:
```
pip install mathcom
```
And to uninstall, enter this code:
```
pip uninstall mathcom
```
### 3. Some sample code
+ #### 3.1. Area and Peri class
```
# Area class
area = Area.cir(2) # 12.56
# Peri class
peri = Peri.rect(3, 5) # 16
print(area, peri)
```
+ #### 3.2 Round class
```
Round.roundDown(6.45) # 6
Round.roundUp(6.45) # 7
Round.roundNormal(6.45) # 6
```
+ #### 3.3 Expert code
```
print(expert("sin", 6)) # -0.2794151982
print(expert("tanh", 5)) # 0.9999092043
```
+ #### 3.4 Change the unit of measurement
```
cm_dm = cm.dm(10,1)  # 1.0
dm2_mm2 = dm.mm(1, 2) # 10000
```
+ #### 3.5 Basic class (new)
```
basic.min(3, 6, -7) # -7
basic.lcm(2, 5, 12) # 60
```
### AND MORE... Try out by testing it.
## Contract
Email: lethanhnhan1172@gmail.com\
Github: @LeThanhNhan2013\
Website: Coming Soon (Will releaed at version 0.2)\ 