Metadata-Version: 2.1
Name: arnavArithmetic
Version: 0.0.1
Summary: A small example package
Author-email: Arnav Sharma <arnavsharma5@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

arnavArithmetic
=====

arnavArithmetic is a lightweight `WSGI`_ Math application. It is designed
to make getting started quick and easy, with the ability to scale up to
complex applications. It began as a simple wrapper around `Werkzeug`_
and `Jinja`_ and has become one of the most popular Python web
application frameworks.

.. _WSGI: https://wsgi.readthedocs.io/
.. _Werkzeug: https://werkzeug.palletsprojects.com/
.. _Jinja: https://jinja.palletsprojects.com/

Installing
----------
Install and update using `pip`_:

.. code-block:: text

    $ pip install arnavArithmetic

.. _pip: https://pip.pypa.io/en/stable/getting-started/

A Simple Example
----------------
.. code-block:: python

    # save this as app.py
    from arnavArithmetic import add

    app = add(1,3)
    print(app)
