Metadata-Version: 2.4
Name: doria-demo
Version: 0.0.1
Summary: A simple Python package for learning PyPI packaging
Author: Doria
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Doria Demo

This is my first Python package for learning how to publish packages to PyPI.

## Features

- Add two numbers
- Multiply two numbers

## Example

```python
from doria_demo.calculator import add

print(add(2, 3))
