Skip to content

Commit e02ead2

Browse files
committed
Set GitHub repository URL as home page URL on PyPI
Fixes #276
1 parent de34860 commit e02ead2

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

pyproject.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ authors = ["Teemu <orkkiolento@gmail.com>", "Janne Vanhala <janne.vanhala@gmail.
66
license = "BSD 3-Clause"
77
readme = "README.md"
88
keywords = ["testing", "pytest", "plugin"]
9-
10-
repository = "https://github.com/Teemu/pytest-sugar"
11-
129
classifiers = [
1310
"Development Status :: 5 - Production/Stable",
1411
"Environment :: Console",
@@ -21,7 +18,8 @@ classifiers = [
2118
]
2219

2320
[tool.poetry.urls]
24-
"Tracker" = "https://github.com/Teemu/pytest-sugar/issues"
21+
Homepage = "https://github.com/Teemu/pytest-sugar"
22+
"Issue Tracker" = "https://github.com/Teemu/pytest-sugar/issues"
2523

2624
[tool.poetry.dependencies]
2725
python = ">=3.8.1,<4.0"

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ def get_version(filename):
2929
long_description=codecs.open("README.md", encoding="utf-8").read(),
3030
long_description_content_type="text/markdown",
3131
version=get_version("pytest_sugar.py"),
32-
url="https://pivotfinland.com/pytest-sugar/",
32+
url="https://github.com/Teemu/pytest-sugar",
3333
project_urls={
34-
"Source": "https://github.com/Teemu/pytest-sugar/",
35-
"Tracker": "https://github.com/Teemu/pytest-sugar/issues",
34+
"Issue Tracker": "https://github.com/Teemu/pytest-sugar/issues",
3635
},
3736
license="BSD",
3837
author="Teemu, Janne Vanhala and others",

0 commit comments

Comments
 (0)