From 4408c5e2ca8b875fff8db13d8172c5f025b1127e Mon Sep 17 00:00:00 2001 From: Akash Mahanty Date: Tue, 25 Jan 2022 20:54:09 +0530 Subject: [PATCH] add snapcraft.yaml --- snapcraft.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 snapcraft.yaml diff --git a/snapcraft.yaml b/snapcraft.yaml new file mode 100644 index 0000000..9a8f3c3 --- /dev/null +++ b/snapcraft.yaml @@ -0,0 +1,23 @@ +name: waybackpy +summary: Wayback Machine API interface and a command-line tool +description: | + Waybackpy is a CLI tool that interfaces with the Wayback Machine APIs. + Wayback Machine has three client side public APIs, Save API, + Availability API and CDX API. These three APIs can be accessed via + the waybackpy from the terminal. +version: git +grade: stable +confinement: strict +base: core20 +architectures: + - build-on: [arm64, armhf, amd64] + +apps: + waybackpy: + command: bin/waybackpy + plugs: [home, network, network-bind, removable-media] + +parts: + waybackpy: + plugin: python + source: https://github.com/akamhy/waybackpy.git