diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..ae822ec --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +type: docker +name: delugeClient + +platform: + os: linux + arch: amd64 + +steps: + - name: Build package + image: python:3.8 + commands: + - make build diff --git a/README.md b/README.md index 8eb4a6a..cba48e2 100644 --- a/README.md +++ b/README.md @@ -4,18 +4,15 @@

A easy to use Deluge CLI that can connect to Deluge RPC (even over ssh) written entirely in python.

-

- - - - - Known Vulnerabilities - - - - - -

+| Tested version | PyPi package | Drone CI | +|:--------|:------|:------|:------------| +| [![PyVersion](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/) | [![PyPI](https://img.shields.io/pypi/v/delugeClient_kevin)](https://pypi.org/project/delugeClient_kevin/) | [![Build Status](https://drone.schleppe.cloud/api/badges/KevinMidboe/delugeClient/status.svg)](https://drone.schleppe.cloud/KevinMidboe/delugeClient) + + +| Known vulnerabilities | License | +|:--------|:------| +| [![Known Vulnerabilities](https://snyk.io/test/github/kevinmidboe/delugeClient/badge.svg?targetFile=requirements.txt)](https://snyk.io/test/github/kevinmidboe/delugeClient?targetFile=requirements.txt) |[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) +

Abstract • diff --git a/delugeClient/__version__.py b/delugeClient/__version__.py index fc79d63..020ed73 100644 --- a/delugeClient/__version__.py +++ b/delugeClient/__version__.py @@ -1 +1 @@ -__version__ = '0.2.1' +__version__ = '0.2.2'