Metadata-Version: 2.2
Name: mylibrary_octopodium
Version: 0.1
Summary: A simple Python library
Home-page: https://github.com/yourusername/mylibrary
Author: Roman Uragan
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: summary

# MyLibrary

A simple Python library for greeting and basic calculations.

## Installation

```bash
pip install .

How to build a distributed package:

To create a distributable package, you need to build it. Run the following commands:

```bash
pip install setuptools wheel  # Install required tools
python setup.py sdist bdist_wheel  # Build the package


## To install it locally:

```bash
pip install .

then try to: 

```bash
pip list

this will output all installed packages.

Installed lib should be there.
