Metadata-Version: 2.1
Name: py3helpers
Version: 0.4.0
Summary: Python utility functions.
Home-page: https://github.com/adbailey4/py3helpers
Author: Andrew Dewey Bailey IV
Author-email: bailey.andrew4@gmail.com
License: BSD-3-Clause
Project-URL: Documentation, https://py3helpers.readthedocs.io/
Project-URL: Changelog, https://py3helpers.readthedocs.io/en/latest/changelog.html
Project-URL: Issue Tracker, https://github.com/adbailey4/py3helpers/issues
Keywords: utility,python3,functions
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Utilities
Requires-Python: >=3.5
Description-Content-Type: text/x-rst
Requires-Dist: numpy (>=1.14.2)
Requires-Dist: pandas (>=0.23.4)
Requires-Dist: scikit-learn (>=0.19.0)
Requires-Dist: matplotlib (>=2.0.2)
Requires-Dist: boto3 (>=1.9)
Requires-Dist: moto (>=1.3.14)
Provides-Extra: seq_tools
Requires-Dist: Cython (>=0.29.12) ; extra == 'seq_tools'
Requires-Dist: pysam (>=0.15) ; extra == 'seq_tools'
Requires-Dist: biopython (>=1.73) ; extra == 'seq_tools'
Requires-Dist: mappy (==2.16) ; (python_version <= "3.6") and extra == 'seq_tools'
Requires-Dist: mappy (==2.17) ; (python_version >= "3.6") and extra == 'seq_tools'

========
Overview
========



An example package. Generated with cookiecutter-pylibrary.

* Free software: BSD 3-Clause License

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

::

    pip install py3helpers

You can also install the in-development version with::

    pip install https://github.com/adbailey4/py3helpers/archive/master.zip


Documentation
=============


https://py3helpers.readthedocs.io/


Development
===========

To run the all tests run::

    tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    - - Windows
      - ::

            set PYTEST_ADDOPTS=--cov-append
            tox

    - - Other
      - ::

            PYTEST_ADDOPTS=--cov-append tox


Changelog
=========

0.4.0 (2020-02-27)
------------------

* First release on PyPI.


