Metadata-Version: 2.1
Name: cognicept-shell
Version: 0.0.16
Summary: Shell utility to configure Cognicept tools.
Home-page: https://cognicept.systems
Author: Jakub Tomasek
License: Apache License 2.0
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: boto3 (>=1.14.0)
Requires-Dist: docker (>=4.2.0)
Requires-Dist: python-dotenv (>=0.13.0)

# COGNICEPT SHELL #

This is a shell utility to configure Cognicept tools.

## Installation

### Dependencies

You need:

* Python 3
* Python 3 PIP

Install:

```
sudo apt-get install python3 python3-pip
```

### Package installation

To install the package locally, run:

```
pip3 install -e <path-to-the-repo>
```

To install from Python Package Index (PyPI), run:

```
pip3 install -i https://test.pypi.org/simple/ cognicept-shell==0.0.3
```

To verify installation, try to run

```
cognicept -h
```

If you get `cognicept: command not found` error, make sure that `~/.local/bin/` is in your `$PATH`. You could run this:

```
export PATH=$PATH:/home/$USER/.local/bin/
```
and add it to your `.bashrc` file.

## Running

### Configure

This feature allows you to configure Cognicept Tools. Run:

```
cognicept configure
```

The tool will let you change values of Cognicept Envrionmental variables.

## Building

To build the PyPI package, run:

```
python3 setup.py sdist bdist_wheel
```

Output will be lots of text, this command generates the build files. To upload the package, run:

```
python3 -m twine upload --repository testpypi dist/* --verbose
```

## Version history

* 0.0 [10/6/2020]


