Metadata-Version: 2.1
Name: bdacore
Version: 3.0.1
Summary: DataDriver API package
Home-page: http://datadriver-doc-ddapi.s3-website-eu-west-1.amazonaws.com/
Author: BDA TEAM
Author-email: datadriver@octo.com
License: Apache 2
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: matplotlib (<3.0)
Requires-Dist: pandas (>=0.23.4)
Requires-Dist: scikit-learn (==0.19.*)
Requires-Dist: scikit-learn[alldeps] (==0.19.*)
Requires-Dist: scipy
Requires-Dist: xxhash
Requires-Dist: unidecode
Requires-Dist: gensim
Requires-Dist: future
Requires-Dist: backports.functools-lru-cache
Requires-Dist: importlib ; python_version <= "3.6"
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'
Requires-Dist: pylint (==1.5.4) ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: nbformat ; extra == 'test'
Requires-Dist: nbconvert ; extra == 'test'
Requires-Dist: pydot ; extra == 'test'
Requires-Dist: graphviz ; extra == 'test'
Requires-Dist: sphinx (>=1.5.*) ; extra == 'test'
Requires-Dist: sphinx-bootstrap-theme (>=0.4.*) ; extra == 'test'
Requires-Dist: nbsphinx (>=0.2.*) ; extra == 'test'
Requires-Dist: sphinx-gallery (>=0.1.*) ; extra == 'test'
Requires-Dist: sphinx-rtd-theme ; extra == 'test'
Requires-Dist: zest.releaser ; extra == 'test'

===============
What is this?
===============

BDA core library of data science and data manipulation functions.

====================
How do I install it
====================

First, make sure you have miniconda or anaconda installed. If not, `install it! <https://conda.io/docs/user-guide/install/index.html>`_


Then you can install bdacore by running::

    make install

This will install the main requirements for running the bdacore lib. If you use advanced methods, you may need to
install extra packages.

If you want to install all required packages at once, then run::

    make develop_env

You may want to override the default package name (bdacore) and Python version (3.6). This can be done by overriding the *ENV_NAME* and *ENV_PY_VERSION* as follows::

    make develop_env ENV_NAME=bdacore_py2 ENV_PY_VERSION=2.7

===============================
Where can I see some examples?
===============================

Check the `docs <http://datadriver-doc-ddapi.s3-website-eu-west-1.amazonaws.com/bdacore/>`_. A good entry point is to check the `tutorials <http://datadriver-doc-ddapi.s3-website-eu-west-1.amazonaws.com/bdacore/tutorial.html>`_!


