Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is required because the relative url leads to 404 from the PyPI page. I figured that it's best to lead to the rendered docs than to Github.


## Python Versions

Expand Down
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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) <dev@otava.apache.org>"]
maintainers = ["Apache Otava (Incubating) <dev@otava.apache.org>"]
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"
Expand Down