diff --git a/allure-behave/setup.py b/allure-behave/setup.py index 06454685..b6892dc1 100644 --- a/allure-behave/setup.py +++ b/allure-behave/setup.py @@ -45,7 +45,11 @@ def main(): name=PACKAGE, use_scm_version=prepare_version, description="Allure behave integration", - url="https://github.com/allure-framework/allure-python", + url="https://allurereport.org/", + project_urls={ + "Documentation": "https://allurereport.org/docs/behave/", + "Source": "https://github.com/allure-framework/allure-python", + }, author="QAMetaSoftware, Stanislav Seliverstov", author_email="sseliverstov@qameta.io", license="Apache-2.0", diff --git a/allure-nose2/setup.py b/allure-nose2/setup.py index 5feed740..c32c96ab 100644 --- a/allure-nose2/setup.py +++ b/allure-nose2/setup.py @@ -44,7 +44,10 @@ def main(): name=PACKAGE, use_scm_version=prepare_version, description="Allure nose2 integration", - url="https://github.com/allure-framework/allure-python", + url="https://allurereport.org/", + project_urls={ + "Source": "https://github.com/allure-framework/allure-python", + }, author="QAMetaSoftware, Stanislav Seliverstov", author_email="sseliverstov@qameta.io", license="Apache-2.0", diff --git a/allure-pytest-bdd/setup.py b/allure-pytest-bdd/setup.py index 05cb521c..34b255e4 100644 --- a/allure-pytest-bdd/setup.py +++ b/allure-pytest-bdd/setup.py @@ -46,7 +46,10 @@ def main(): name=PACKAGE, use_scm_version=prepare_version, description="Allure pytest-bdd integration", - url="https://github.com/allure-framework/allure-python", + url="https://allurereport.org/", + project_urls={ + "Source": "https://github.com/allure-framework/allure-python", + }, author="QAMetaSoftware, Stanislav Seliverstov", author_email="sseliverstov@qameta.io", license="Apache-2.0", diff --git a/allure-pytest/setup.py b/allure-pytest/setup.py index 0e166c1c..c6527209 100644 --- a/allure-pytest/setup.py +++ b/allure-pytest/setup.py @@ -58,7 +58,11 @@ def main(): name=PACKAGE, use_scm_version=prepare_version, description="Allure pytest integration", - url="https://github.com/allure-framework/allure-python", + url="https://allurereport.org/", + project_urls={ + "Documentation": "https://allurereport.org/docs/pytest/", + "Source": "https://github.com/allure-framework/allure-python", + }, author="QAMetaSoftware, Stanislav Seliverstov", author_email="sseliverstov@qameta.io", license="Apache-2.0", diff --git a/allure-python-commons/setup.py b/allure-python-commons/setup.py index cdc55421..94b80f15 100644 --- a/allure-python-commons/setup.py +++ b/allure-python-commons/setup.py @@ -29,7 +29,10 @@ def main(): use_scm_version={"root": "..", "relative_to": __file__}, setup_requires=['setuptools_scm'], description="Common module for integrate allure with python-based frameworks", - url="https://github.com/allure-framework/allure-python", + url="https://allurereport.org/", + project_urls={ + "Source": "https://github.com/allure-framework/allure-python", + }, author="QAMetaSoftware, Stanislav Seliverstov", author_email="sseliverstov@qameta.io", license="Apache-2.0", diff --git a/allure-robotframework/setup.py b/allure-robotframework/setup.py index a633f5e7..e8ac013c 100644 --- a/allure-robotframework/setup.py +++ b/allure-robotframework/setup.py @@ -52,7 +52,10 @@ def get_readme(fname): packages=['allure_robotframework', 'AllureLibrary'], package_dir={"allure_robotframework": "src/listener", 'AllureLibrary': 'src/library'}, py_modules=['allure_robotframework'], - url="https://github.com/allure-framework/allure-python", + url="https://allurereport.org/", + project_urls={ + "Source": "https://github.com/allure-framework/allure-python", + }, author="Sergey Khomutinin", author_email="skhomuti@gmail.com", long_description=get_readme("README.md"),