Metadata-Version: 2.1
Name: envinfopy
Version: 0.0.3
Summary: pyenvinfo is a Python Library to get execution environment information.
Home-page: https://github.com/thombashi/envinfopy
Author: Tsuyoshi Hombashi
Author-email: tsuyoshi.hombashi@gmail.com
License: MIT License
Project-URL: Source, https://github.com/thombashi/envinfopy
Project-URL: Tracker, https://github.com/thombashi/envinfopy/issues
Description: .. contents:: **envinfopy**
           :backlinks: top
           :depth: 2
        
        
        Summary
        ============================================
        .. image:: https://badge.fury.io/py/envinfopy.svg
            :target: https://badge.fury.io/py/envinfopy
            :alt: PyPI package version
        
        .. image:: https://img.shields.io/pypi/pyversions/envinfopy.svg
            :target: https://pypi.org/project/envinfopy
            :alt: Supported Python versions
        
        .. image:: https://img.shields.io/pypi/implementation/envinfopy.svg
            :target: https://pypi.org/project/envinfopy
            :alt: Supported Python implementations
        
        .. image:: https://github.com/thombashi/envinfopy/workflows/Tests/badge.svg
            :target: https://github.com/thombashi/envinfopy/actions?query=workflow%3ATests
            :alt: Linux/macOS/Windows CI status
        
        .. image:: https://coveralls.io/repos/github/thombashi/envinfopy/badge.svg?branch=master
            :target: https://coveralls.io/github/thombashi/envinfopy?branch=master
            :alt: Test coverage: coveralls
        
        envinfopy is a Python Library to get execution environment information.
        
        
        Installation
        ============================================
        ::
        
            pip install envinfopy
        
        
        Usage
        ============================================
        
        Library usage
        --------------------------------------------
        .. code-block:: python
        
            >>> import envinfopy
            >>> envinfopy.get_envinfo(["envinfopy"])
            {'uname': 'Linux ubuntu1804 4.15.0-112-generic x86_64', 'implementation': 'CPython', 'version': '3.8.5', 'envinfopy version': '0.0.1'}
        
        Get environment information as Markdown:
        
        .. code-block:: python
        
            >>> import envinfopy
            >>> print(envinfopy.dumps(["envinfopy"], "markdown"))
            - uname: Linux ubuntu1804 4.15.0-112-generic x86_64
            - CPython version: 3.8.5
            - envinfopy version: 0.0.1
        
        
        CLI usage
        --------------------------------------------
        ::
        
            $ python -m envinfopy --packages envinfopy --format markdown
            - uname: Linux ubuntu1804 4.15.0-112-generic x86_64
            - CPython version: 3.8.5
            - envinfopy version: 0.0.2
        
        
        Dependencies
        ============================================
        Python 3.5+
        no external dependencies.
        
Keywords: environment,uname,version
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.5
Description-Content-Type: text/x-rst
Provides-Extra: test
