Metadata-Version: 2.1
Name: pydatasci
Version: 0.0.17
Summary: Simplify the end-to-end workflow of machine learning.
Home-page: https://github.com/pydatasci-repo
Author: Layne Sadler
Author-email: layne@pydatasci.org
License: UNKNOWN
Description: # pydatasci
        
        > Simplify the end-to-end workflow of machine learning.
        
        
        ### Updating PyPI Package:
        ```
        $ python3 setup.py sdist bdist_wheel
        $ python3 -m twine upload --repository pypi dist/*
        $ pip3 install --upgrade pydatasci; pip3 install --upgrade pydatasci
        $ rm -r build dist pydatasci.egg-info
        # proactively update the version number in setup.py next time
        ```
        
        ### First Time Installation:
        This library makes use of `appdirs` for an operating system agnostic location where configuration and database files will be created to store settings and data science metrics. This process also ensures that you have the permissions needed to read/ write files in that location. 
        
        Enter the following commands one by one:
        ```
        $ pip3 install --upgrade pydatasci
        $ python3
        
        >>> import pydatasci as pds
        >>> if pds.check_permissions() is False: pds.grant_permissions()
        >>> pds.create_config()
        
        >>> from pydatasci import mldb
        >>> mldb.create_db()
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 1 - Planning
Classifier: Framework :: Jupyter
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Description-Content-Type: text/markdown
