From 71c0b61a620b4ee6ba34179209c2a85fa0509b13 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Sat, 26 Sep 2020 13:42:40 +1000 Subject: [PATCH] include tests in pypi package This commit adds the tests directory when packaging up for pypi. This is in response to a request from @pacoesteban (GitHub user) who is the maintainer for the OpenBSD port of ephemetoot. --- README.md | 2 ++ pyproject.toml | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a1078cd..9b3f1eb 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,8 @@ You can use `ephemetoot` to delete [Mastodon](https://github.com/tootsuite/masto * they are individually listed to be kept ## Contributing +ephemetoot is packaged using `poetry` and tested using `pytest`. + For all bugs, suggestions, pull requests or other contributions, please check the [contributing guide](./docs/contributing.md). ## License diff --git a/pyproject.toml b/pyproject.toml index d7971f6..9b0f324 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ephemetoot" -version = "3.1.0" +version = "3.1.1-alpha.1" description = "A command line tool to delete your old toots" authors = ["Hugh Rundle "] license = "GPL-3.0-or-later" @@ -15,6 +15,7 @@ classifiers = [ ] include = [ "LICENSE", + "tests" ] [tool.poetry.dependencies]