You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/10/24 10:24:38 UTC

[airflow] branch master updated: Add links to PyPI packages. (#11818)

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

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new e4adfd7  Add links to PyPI packages. (#11818)
e4adfd7 is described below

commit e4adfd7a24dd72e21e3442e23bb873e6aa7a6ebf
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Sat Oct 24 12:23:04 2020 +0200

    Add links to PyPI packages. (#11818)
    
    Same as in #11801 but in provider's packages.
---
 provider_packages/SETUP_TEMPLATE.py.jinja2 | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/provider_packages/SETUP_TEMPLATE.py.jinja2 b/provider_packages/SETUP_TEMPLATE.py.jinja2
index 916ebf7..4f6bb82 100644
--- a/provider_packages/SETUP_TEMPLATE.py.jinja2
+++ b/provider_packages/SETUP_TEMPLATE.py.jinja2
@@ -81,6 +81,11 @@ def do_setup(version_suffix_for_pypi=''):
         download_url=(
             'https://dist.apache.org/repos/dist/release/airflow/{{ PROVIDERS_FOLDER }}' + version),
         python_requires='~=3.6',
+        project_urls={
+            'Documentation': 'https://airflow.apache.org/docs/',
+            'Bug Tracker': 'https://github.com/apache/airflow/issues',
+            'Source Code': 'https://github.com/apache/airflow',
+        },
     )
 
 #