Metadata-Version: 2.1
Name: a-python-package
Version: 0.0.8
Summary: A Python package
Home-page: https://github.com/mattmolinare/a-python-package
Author: Matt Molinare
Author-email: mattmolinare@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
Requires-Dist: numpy (>=1.20)
Requires-Dist: click
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Requires-Dist: numpydoc ; extra == 'docs'
Provides-Extra: lint
Requires-Dist: pylama ; extra == 'lint'
Requires-Dist: isort ; extra == 'lint'
Requires-Dist: mypy ; extra == 'lint'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: coverage ; extra == 'test'

================
A Python package
================

.. image:: https://img.shields.io/pypi/pyversions/a-python-package
    :target: https://pypi.org/project/a-python-package/
    :alt: Python Version

.. image:: https://img.shields.io/pypi/v/a-python-package
    :target: https://pypi.org/project/a-python-package/
    :alt: PyPI Package Version

.. image:: https://img.shields.io/conda/v/mattmolinare/a-python-package
    :target: https://anaconda.org/mattmolinare/a-python-package
    :alt: Anaconda Package Version

.. image:: https://img.shields.io/github/last-commit/mattmolinare/a-python-package
    :target: https://github.com/mattmolinare/a-python-package
    :alt: Last Commit

.. image:: https://img.shields.io/github/workflow/status/mattmolinare/a-python-package/On%20push%20and%20pull%20request
    :target: https://github.com/mattmolinare/a-python-package/actions?query=workflow%3A%22On+push+and+pull+request%22
    :alt: Build Status

.. image:: https://readthedocs.org/projects/a-python-package/badge/?version=latest
    :target: https://a-python-package.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. image:: https://codecov.io/gh/mattmolinare/a-python-package/branch/main/graph/badge.svg?token=T1ZHDZLG7M
    :target: https://codecov.io/gh/mattmolinare/a-python-package
    :alt: Code Coverage

.. image:: https://img.shields.io/github/license/mattmolinare/a-python-package
    :target: https://github.com/mattmolinare/a-python-package/blob/main/LICENSE
    :alt: License

This is an example Python package.

.. code-block::

    import foo
    assert foo.bar.baz(3, 4) == 5

Installation
============

To install from PyPI:

.. code-block::

    pip install a-python-package

To install from Anaconda Cloud:

.. code-block::

    conda install -c mattmolinare a-python-package


