This is an automated email from the ASF dual-hosted git repository. asorokoumov pushed a commit to branch pypi-docs in repository https://gitbox.apache.org/repos/asf/otava.git
commit 5b7143bfc0d3f371df1877fc1e7deaa4945d9512 Author: Alex Sorokoumov <[email protected]> AuthorDate: Fri Jul 4 12:09:45 2025 -0700 PyPI Project Description Fixes #66 --- README.md | 2 +- pyproject.toml | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a368ab..f641e29 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ also capable of comparing the level of performance recorded in two different git This can be used for example to validate a feature branch against the main branch, perhaps integrated with a pull request. -See the documentation in [docs/README.md](docs/README.md). +See the documentation in https://otava.apache.org/docs/overview/. ## Python Versions diff --git a/pyproject.toml b/pyproject.toml index d4a3e4a..788bc16 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,8 +20,25 @@ name = "apache-otava" version = "0.6.0" description = "Apache Otava (Incubating): Change Detection for Continuous Performance Engineering" authors = ["Apache Otava (Incubating) <[email protected]>"] +maintainers = ["Apache Otava (Incubating) <[email protected]>"] include = ["DISCLAIMER"] packages = [{ include = "otava" }] +readme = "README.md" +homepage = "https://otava.apache.org" +repository = "https://github.com/apache/otava" +license = "Apache-2.0" +classifiers = [ + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", +] + +[tool.poetry.urls] +"Homepage" = "https://otava.apache.org" +"Documentation" = "https://otava.apache.org/docs/overview" +"Bug Tracker" = "https://github.com/apache/otava/issues" +"Repository" = "https://github.com/apache/otava" [tool.poetry.dependencies] dateparser = "^1.0.0"
