Metadata-Version: 2.1
Name: is-number
Version: 0.0.3
Summary: A Python library to determine if something is a number.
Home-page: UNKNOWN
Author: Jacob Tomlinson
Author-email: jacob@tomlinson.email
License: UNKNOWN
Description: is-number
        =========
        
        .. image:: https://img.shields.io/pypi/v/is-number
           :target: https://pypi.org/project/is-number/
           :alt: PyPI
        .. image:: https://github.com/jacobtomlinson/is-number/workflows/CI/badge.svg
           :target: https://github.com/jacobtomlinson/is-number/actions?query=workflow%3ACI
           :alt: GitHub Actions - CI
        .. image:: https://github.com/jacobtomlinson/is-number/workflows/pre-commit/badge.svg
           :target: https://github.com/jacobtomlinson/is-number/actions?query=workflow%3Apre-commit
           :alt: GitHub Actions - pre-commit
        .. image:: https://img.shields.io/codecov/c/gh/jacobtomlinson/is-number
           :target: https://app.codecov.io/gh/jacobtomlinson/is-number
           :alt: Codecov
        .. image:: https://img.shields.io/badge/FAQ-documentation-blue.svg
           :target: https://is-number.readthedocs.io/en/latest/faq.html
           :alt: Community FAQ
        .. image:: https://img.shields.io/badge/Q&A-StackOverflow-orange.svg
           :target: https://stackoverflow.com/questions/tagged/python
           :alt: Q&A StackOverflow
        .. image:: https://img.shields.io/badge/chat-gitter-green.svg
           :target: https://gitter.im/is-number/community
           :alt: Gitter chat
        
        A Python library to determine if something is a number.
        
        Installation
        ------------
        
        .. code-block:: bash
        
           pip install is-number
        
        Developing
        ----------
        
        This project uses ``black`` to format code and ``flake8`` for linting. We also support ``pre-commit`` to ensure
        these have been run. To configure your local environment please install these development dependencies and set up
        the commit hooks.
        
        .. code-block:: bash
        
           $ pip install black flake8 pre-commit
           $ pre-commit install
        
        Testing
        -------
        
        This project uses ``pytest`` to run tests and also to test docstring examples.
        
        Install the test dependencies.
        
        .. code-block:: bash
        
           $ pip install -r requirements_test.txt
        
        Run the tests.
        
        .. code-block:: bash
        
           $ pytest
           === 3 passed in 0.13 seconds ===
        
        Releasing
        ---------
        
        Releases are published automatically when a tag is pushed to GitHub.
        
        .. code-block:: bash
        
           # Set next version number
           export RELEASE=x.x.x
        
           # Create tags
           git commit --allow-empty -m "Release $RELEASE"
           git tag -a $RELEASE -m "Version $RELEASE"
        
           # Push
           git push upstream --tags
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
