Metadata-Version: 2.1
Name: add-15-05-23
Version: 0.1.0
Summary: Adds two numbers
Home-page: UNKNOWN
Author: Mani
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Provides-Extra: dev
Requires-Dist: pytest (>=7.0) ; extra == 'dev'
Requires-Dist: twine (>=4.0.2) ; extra == 'dev'

# ADD TWO NUMBERS

This is an example project demonstrating how to publish a python module to PyPI.

## Installation

Run the following to install:
''' 
python3
pip install add_15_05_23
'''

##Usage
'''
python3
from add import add_numbers

# Generate "25"
add_numbers(15,10)
'''

# Developing add_numbers
To install add_numbers, along with tools you need to develop and run tests, run the following in your virtualenv:
'''
bash
$pip install -e .[dev]
'''

