You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2022/11/11 07:06:49 UTC

[buildstream-plugins] 03/05: setup.py: Update author to reflect ASF

This is an automated email from the ASF dual-hosted git repository.

tvb pushed a commit to branch tristan/more-release-fixes
in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git

commit e23fe0ffda364ea029562215d19bc620fc21de10
Author: Tristan van Berkom <tr...@codethink.co.uk>
AuthorDate: Fri Nov 11 16:03:45 2022 +0900

    setup.py: Update author to reflect ASF
    
    And also correct the documentation link
---
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index ed83bc0..181cc52 100755
--- a/setup.py
+++ b/setup.py
@@ -45,7 +45,7 @@ from buildstream_plugins import __version__  # pylint: disable=wrong-import-posi
 setup(
     name="buildstream-plugins",
     version=__version__,
-    author="BuildStream Developers",
+    author="The Apache Software Foundation",
     author_email="dev@buildstream.apache.org",
     classifiers=[
         "Environment :: Console",
@@ -65,7 +65,7 @@ setup(
     license="Apache License Version 2.0",
     url="https://buildstream.build",
     project_urls={
-        "Documentation": "https://docs.buildstream.build/",
+        "Documentation": "https://apache.github.io/buildstream-plugins/",
     },
     package_dir={"": "src"},
     packages=find_packages(where="src"),