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..f02fcb9 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.text = "MIT" +authors = [{name = "wsnk"}] + version = "0.1.0" -dependencies = [ - "pytest" -] -optional-dependencies.tests = ["flake8"] +dependencies = ["pytest"] +optional-dependencies.tests = ["flake8"] + +[project.urls] +Homepage = "https://github.com/wsnk/majava" [project.entry-points.pytest11] myproject = "majava.pytplug"