Metadata-Version: 2.4
Name: calc_seereen
Version: 0.0.1
Summary: A simple calculation tools package
Author-email: seereen <seereenwaehayee@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# calc_tools_yiing681

ตัวอย่าง Python Package มาตรฐาน PEP 517/621 ที่มี 2 โมดูลการทำงาน

## การใช้งาน

```python
import calc_tools_yiing681 as pkg

# ใช้งานฟังก์ชันจาก functions
print(pkg.linear(2, 3, 1))  # 7

# ใช้งานฟังก์ชันจาก vectors
print(pkg.add_vectors((1, 2), (3, 4)))  # (4, 6)
