Skip to content

Commit

Permalink
Set GitHub repository URL as home page URL on PyPI
Browse files Browse the repository at this point in the history
Fixes #276
  • Loading branch information
justinmayer committed Jan 30, 2024
1 parent de34860 commit e02ead2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 2 additions & 4 deletions pyproject.toml
Expand Up @@ -6,9 +6,6 @@ authors = ["Teemu <orkkiolento@gmail.com>", "Janne Vanhala <janne.vanhala@gmail.
license = "BSD 3-Clause"
readme = "README.md"
keywords = ["testing", "pytest", "plugin"]

repository = "https://github.com/Teemu/pytest-sugar"

classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand All @@ -21,7 +18,8 @@ classifiers = [
]

[tool.poetry.urls]
"Tracker" = "https://github.com/Teemu/pytest-sugar/issues"
Homepage = "https://github.com/Teemu/pytest-sugar"
"Issue Tracker" = "https://github.com/Teemu/pytest-sugar/issues"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -29,10 +29,9 @@ def get_version(filename):
long_description=codecs.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
version=get_version("pytest_sugar.py"),
url="https://pivotfinland.com/pytest-sugar/",
url="https://github.com/Teemu/pytest-sugar",
project_urls={
"Source": "https://github.com/Teemu/pytest-sugar/",
"Tracker": "https://github.com/Teemu/pytest-sugar/issues",
"Issue Tracker": "https://github.com/Teemu/pytest-sugar/issues",
},
license="BSD",
author="Teemu, Janne Vanhala and others",
Expand Down

0 comments on commit e02ead2

Please sign in to comment.