Metadata-Version: 2.5
Name: math4u
Version: 0.1.3
Summary: ตัวอย่าง Python Package มาตรฐานยุคใหม่
Project-URL: Homepage, https://github.com/username/my_package
Project-URL: Documentation, https://github.com/username/my_package#readme
Project-URL: Repository, https://github.com/username/my_package.git
Project-URL: Bug Tracker, https://github.com/username/my_package/issues
Author-email: Bunyasak Rakjing <boonyasuk1213@gmail.com>
License: MIT
License-File: LICENSE
Keywords: example,package,pep621
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Requires-Dist: sympy
Description-Content-Type: text/markdown

# math4u

Python Package สำหรับการคำนวณ Calculus และ Linear Algebra

## การใช้งาน

```python
import math4u

# Calculus
print(math4u.derivative("x**3 + 2*x"))
# 3*x**2 + 2

# Linear Algebra
print(math4u.determinant([[1, 2], [3, 4]]))
# -2