Metadata-Version: 2.1
Name: pypi-packaging-tutorial
Version: 0.1.1
Summary: 
Author: Your Name
Author-email: you@example.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/plain

`pypi_pyckaging_tutorial` provides a simple example to create your first Python package and upload it to pypi.


example usage:
from multiply.by_three import multiply_by_three
from divide.by_three import divide_by_three

multiply_by_three(9)
divide_by_three(21)
