Metadata-Version: 2.1
Name: remme-core-cli
Version: 0.1.1
Summary: The command-line interface (CLI) that provides a set of commands to interact with Remme-core.
Home-page: https://github.com/Remmeauth/remme-core-cli
Author: Remme
Author-email: developers@remme.io
License: MIT
Description: # remme-core-cli
        
        [![Release](https://img.shields.io/github/release/Remmeauth/remme-core-cli.svg)](https://github.com/Remmeauth/remme-core-cli/releases)
        [![PyPI version shields.io](https://img.shields.io/pypi/v/remme-core-cli.svg)](https://pypi.python.org/pypi/remme-core-cli/)
        [![Build Status](https://travis-ci.com/Remmeauth/remme-core-cli.svg?branch=develop)](https://travis-ci.com/Remmeauth/remme-core-cli)
        [![codecov](https://codecov.io/gh/Remmeauth/remme-core-cli/branch/develop/graph/badge.svg)](https://codecov.io/gh/Remmeauth/remme-core-cli)
        
        [![Downloads](https://pepy.tech/badge/remme-core-cli)](https://pepy.tech/project/remme-core-cli)
        [![PyPI license](https://img.shields.io/pypi/l/remme-core-cli.svg)](https://pypi.python.org/pypi/remme-core-cli/)
        [![PyPI pyversions](https://img.shields.io/pypi/pyversions/remme-core-cli.svg)](https://pypi.python.org/pypi/remme-core-cli/)
        
          * [Getting started](#getting-started)
          * [Usage](#usage)
            * [Service](#service)
          * [Development](#development)
          * [Production](#production)
          
        ## Getting started
        
        Blank.
        
        ## Usage
        
        ### Service
        
        Get the version of the package — ``remme --version``:
        
        ```bash
        $ remme --version
        remme, version 0.1.0
        ```
        
        Get all possible package's commands — ``remme --help``:
        
        ```bash
        $ remme --help
        Usage: remme [OPTIONS] COMMAND [ARGS]...
        
          Command line interface for PyPi version checking.
        
        Options:
          --version  Show the version and exit.
          --help     Show this message and exit.
        
        ...
        ```
        
        ## Development
        
        To run the tests, use the following command, being in the root of the project:
        
        ```bash
        $ pytest tests/
        ```
        
        To build the package to test of to be deployed, use the following commands:
        
        ```bash
        $ pip3 uninstall -y remme-core-cli && rm -rf dist/ remme_core_cli.egg-info && \
              python3 setup.py sdist && pip3 install dist/*.tar.gz
        ```
        
        ## Production
        
        To build the package and upload it to [PypI](https://pypi.org) to be accessible through [pip](https://github.com/pypa/pip),
        use the following commands. [Twine](https://twine.readthedocs.io/en/latest/) requires the username and password of the
        account package is going to be uploaded to.
        
        ```build
        $ python3 setup.py sdist
        $ twine upload dist/*
        ```
        
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
