From 0ccac3ee0be0354014fcb674fbaabc903f26516b Mon Sep 17 00:00:00 2001 From: wsnk Date: Mon, 10 Feb 2025 23:12:01 +0200 Subject: [PATCH 1/2] Docs --- README.md | 5 ++++- pyproject.toml | 13 ++++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 84c34a3..4d3bf07 100644 --- a/README.md +++ b/README.md @@ -1 +1,4 @@ -## Python Matchers +## majava +Collection of matchers for testing + +..tbd diff --git a/pyproject.toml b/pyproject.toml index 0bb089b..814a7d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,11 +4,18 @@ build-backend = "setuptools.build_meta" [project] name = "majava" +description = "Collection of matchers for testing" +keywords = ["testing", "test", "pytest", "matcher"] +readme = "README.md" +license = "MIT" +authors = [{name = "wsnk"}] + version = "0.1.0" -dependencies = [ - "pytest" -] +dependencies = ["pytest"] optional-dependencies.tests = ["flake8"] +[project.urls] +Homepage = "https://github.com/wsnk/majava" + [project.entry-points.pytest11] myproject = "majava.pytplug" From 62698becc1ccbc4ae3649c60f7d9416a2464fec2 Mon Sep 17 00:00:00 2001 From: wsnk Date: Mon, 10 Feb 2025 23:31:52 +0200 Subject: [PATCH 2/2] Up --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 814a7d5..f02fcb9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,12 +7,12 @@ name = "majava" description = "Collection of matchers for testing" keywords = ["testing", "test", "pytest", "matcher"] readme = "README.md" -license = "MIT" +license.text = "MIT" authors = [{name = "wsnk"}] version = "0.1.0" dependencies = ["pytest"] -optional-dependencies.tests = ["flake8"] +optional-dependencies.tests = ["flake8"] [project.urls] Homepage = "https://github.com/wsnk/majava"