Metadata-Version: 1.2
Name: nbex
Version: 0.3.2
Summary: Support for code that works interactively and in batch mode.
Home-page: https://github.com/hoelzl/nbex
Author: Matthias Hölzl
Author-email: tc@xantira.com
License: MIT license
Description: =========================
        Notebook-like Executables
        =========================
        
        
        .. image:: https://img.shields.io/pypi/v/nbex.svg
                :target: https://pypi.python.org/pypi/nbex
        
        .. image:: https://img.shields.io/travis/hoelzl/nbex.svg
                :target: https://travis-ci.com/hoelzl/nbex
        
        .. image:: https://readthedocs.org/projects/nbex/badge/?version=latest
                :target: https://nbex.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        
        .. image:: https://pyup.io/repos/github/hoelzl/nbex/shield.svg
             :target: https://pyup.io/repos/github/hoelzl/nbex/
             :alt: Updates
        
        
        
        Python programs that allow notebook-like development.
        
        
        * Free software: MIT license
        * Documentation: https://nbex.readthedocs.io.
        
        
        Features
        --------
        
        * Switch between development and deployment modes
        
          * Use development mode to configure smaller data tables, models, etc.
        
          * Use deployment mode to run full deployment and training
        
        * Switch between interactive and command-line usage
        
          * Use interactive mode to interact with the code in a notebook, receive styled IPython output, etc.
        
          * Use command-line usage to run the code in your CI system, etc.
        
        Installation for Development
        ----------------------------
        
        To develop `nbex` with a standard Python environment install it as
        
        .. code-block:: bash
        
          pip install -e .
        
        from the root directory of the package.
        
        If you are using conda, make sure that you have the `conda-build` package installed
        and then install `nbex` with
        
        .. code-block:: bash
        
          conda develop .
        
        from the root directory of the package.
        
        Credits
        -------
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        
        
        =======
        History
        =======
        
        0.1.0 (2020-11-11)
        ------------------
        
        * First release on PyPI.
        
        0.2.0 (2020-11-12)
        ------------------
        
        * Try to guess a useful value for is_interactive without user intervention.
        
        0.2.4 (2020-11-27)
        ------------------
        
        * Add support for publishing a conda version
        
        0.3.0 (unreleased)
        ------------------
        
        * Improved algorithm for figuring out whether a session is interactive or not.
        
        0.3.1 (2021-01-05)
        ------------------
        
        * Add `session.forced_interactive_value` property to override automatic
          detection.
Keywords: nbex
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
