Metadata-Version: 2.0
Name: racing-data
Version: 1.0.0a0
Summary: Python horse racing class library
Home-page: https://github.com/justjasongreen/racing_data
Author: Jason Green
Author-email: justjasongreen@gmail.com
License: MIT
Keywords: horse racing class library
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: setuptools-scm
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: tox; extra == 'test'

===========
racing_data
===========


This project aims to provide horse racing data management and analysis services in Python.


.. image:: https://travis-ci.org/justjasongreen/racing_data.svg?branch=master
    :target: https://travis-ci.org/justjasongreen/racing_data
    :alt: Build Status
.. image:: https://coveralls.io/repos/github/justjasongreen/racing_data/badge.svg?branch=master
    :target: https://coveralls.io/github/justjasongreen/racing_data?branch=master
    :alt: Coverage Status
.. image:: https://landscape.io/github/justjasongreen/racing_data/master/landscape.svg?style=flat
    :target: https://landscape.io/github/justjasongreen/racing_data/master
    :alt: Code Health


************
Installation
************


Prior to using racing_data, the package must be installed in your current Python environment. In most cases, an automated installation via PyPI and pip will suffice, as follows::

    pip install racing_data

If you would prefer to gain access to new (unstable) features via a pre-release version of the package, specify the 'pre' option when calling pip, as follows::

    pip install --pre racing_data

To gain access to bleeding edge developments, the package can be installed from a source distribution. To do so, you will need to clone the git repository and execute the setup.py script from the root directory of the source tree, as follows::

    git clone https://github.com/justjasongreen/racing_data.git
    cd racing_data
    python setup.py install

If you would prefer to install the package as a symlink to the source distribution (for development purposes), execute the setup.py script with the 'develop' option instead, as follows::

    python setup.py develop


***********
Basic Usage
***********


To access the functionality described below, you must first import the racing_data package into your Python interpreter, as follows::

    >>> import racing_data


***********************
Development and Testing
***********************


The source distribution includes a test suite based on pytest. To ensure compatibility with all supported versions of Python, it is recommended that the test suite be run via tox.

To install all development and test requirements into your current Python environment, execute the following command from the root directory of the source tree::

    pip install -e .[dev,test]

To run the test suite included in the source distribution, execute the tox command from the root directory of the source tree as follows::

    tox


