=== Ubuntu build requirements =====

Build requirements for Ubuntu

```
sudo apt-get install -y python3
sudo apt-get install -y python-is-python3
sudo apt-get install -y python-setuptools
sudo apt-get install -y pip
```

Go to the 'scylla-stress-orchestrator' and type the following command to build the project:
```
python setup.py sdist
```
This will create the distribution in the 'dist' directory.

To install the distribution type:
```
pip install --force-reinstall dist/scyllaso-0.1.dev2.tar.gz
```

To verify it is working correctly, type:

```
generate_benchmark --help
```

============== Releasing ==============

Prerequisites:
pip install twine

Make the release build:
python setup.py sdist

Uploading
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

https://realpython.com/pypi-publish-python-package/