apache-airflow-providers-git 0.0.1rc1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of apache-airflow-providers-git might be problematic. Click here for more details.

Files changed (28) hide show
  1. apache_airflow_providers_git-0.0.1rc1/PKG-INFO +94 -0
  2. apache_airflow_providers_git-0.0.1rc1/README.rst +61 -0
  3. apache_airflow_providers_git-0.0.1rc1/docs/bundles/index.rst +40 -0
  4. apache_airflow_providers_git-0.0.1rc1/docs/changelog.rst +24 -0
  5. apache_airflow_providers_git-0.0.1rc1/docs/commits.rst +55 -0
  6. apache_airflow_providers_git-0.0.1rc1/docs/conf.py +27 -0
  7. apache_airflow_providers_git-0.0.1rc1/docs/connections/git.rst +53 -0
  8. apache_airflow_providers_git-0.0.1rc1/docs/index.rst +100 -0
  9. apache_airflow_providers_git-0.0.1rc1/docs/installing-providers-from-sources.rst +18 -0
  10. apache_airflow_providers_git-0.0.1rc1/docs/security.rst +18 -0
  11. apache_airflow_providers_git-0.0.1rc1/provider.yaml +47 -0
  12. apache_airflow_providers_git-0.0.1rc1/pyproject.toml +110 -0
  13. apache_airflow_providers_git-0.0.1rc1/src/airflow/__init__.py +18 -0
  14. apache_airflow_providers_git-0.0.1rc1/src/airflow/providers/__init__.py +18 -0
  15. apache_airflow_providers_git-0.0.1rc1/src/airflow/providers/git/LICENSE +201 -0
  16. apache_airflow_providers_git-0.0.1rc1/src/airflow/providers/git/__init__.py +39 -0
  17. apache_airflow_providers_git-0.0.1rc1/src/airflow/providers/git/bundles/__init__.py +16 -0
  18. apache_airflow_providers_git-0.0.1rc1/src/airflow/providers/git/bundles/git.py +239 -0
  19. apache_airflow_providers_git-0.0.1rc1/src/airflow/providers/git/get_provider_info.py +41 -0
  20. apache_airflow_providers_git-0.0.1rc1/src/airflow/providers/git/hooks/__init__.py +16 -0
  21. apache_airflow_providers_git-0.0.1rc1/src/airflow/providers/git/hooks/git.py +110 -0
  22. apache_airflow_providers_git-0.0.1rc1/tests/conftest.py +19 -0
  23. apache_airflow_providers_git-0.0.1rc1/tests/unit/__init__.py +16 -0
  24. apache_airflow_providers_git-0.0.1rc1/tests/unit/git/__init__.py +16 -0
  25. apache_airflow_providers_git-0.0.1rc1/tests/unit/git/bundles/__init__.py +16 -0
  26. apache_airflow_providers_git-0.0.1rc1/tests/unit/git/bundles/test_git.py +485 -0
  27. apache_airflow_providers_git-0.0.1rc1/tests/unit/git/hooks/__init__.py +16 -0
  28. apache_airflow_providers_git-0.0.1rc1/tests/unit/git/hooks/test_git.py +194 -0
@@ -0,0 +1,94 @@
1
+ Metadata-Version: 2.4
2
+ Name: apache-airflow-providers-git
3
+ Version: 0.0.1rc1
4
+ Summary: Provider package apache-airflow-providers-git for Apache Airflow
5
+ Keywords: airflow-provider,git,airflow,integration
6
+ Author-email: Apache Software Foundation <dev@airflow.apache.org>
7
+ Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
8
+ Requires-Python: ~=3.9
9
+ Description-Content-Type: text/x-rst
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Environment :: Console
12
+ Classifier: Environment :: Web Environment
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: System Administrators
15
+ Classifier: Framework :: Apache Airflow
16
+ Classifier: Framework :: Apache Airflow :: Provider
17
+ Classifier: License :: OSI Approved :: Apache Software License
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: System :: Monitoring
23
+ Requires-Dist: apache-airflow>=3.0.0rc0
24
+ Requires-Dist: GitPython>=3.1.44
25
+ Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
26
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-git/0.0.1/changelog.html
27
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-git/0.0.1
28
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
29
+ Project-URL: Slack Chat, https://s.apache.org/airflow-slack
30
+ Project-URL: Source Code, https://github.com/apache/airflow
31
+ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
32
+
33
+
34
+ .. Licensed to the Apache Software Foundation (ASF) under one
35
+ or more contributor license agreements. See the NOTICE file
36
+ distributed with this work for additional information
37
+ regarding copyright ownership. The ASF licenses this file
38
+ to you under the Apache License, Version 2.0 (the
39
+ "License"); you may not use this file except in compliance
40
+ with the License. You may obtain a copy of the License at
41
+
42
+ .. http://www.apache.org/licenses/LICENSE-2.0
43
+
44
+ .. Unless required by applicable law or agreed to in writing,
45
+ software distributed under the License is distributed on an
46
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
47
+ KIND, either express or implied. See the License for the
48
+ specific language governing permissions and limitations
49
+ under the License.
50
+
51
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
52
+
53
+ .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
54
+ ``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
55
+
56
+ Package ``apache-airflow-providers-git``
57
+
58
+ Release: ``0.0.1``
59
+
60
+
61
+ `Distributed version control system (GIT) <https://git-scm.com/>`__
62
+
63
+
64
+ Provider package
65
+ ----------------
66
+
67
+ This is a provider package for ``git`` provider. All classes for this provider package
68
+ are in ``airflow.providers.git`` python package.
69
+
70
+ You can find package information and changelog for the provider
71
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-git/0.0.1/>`_.
72
+
73
+ Installation
74
+ ------------
75
+
76
+ You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
77
+ for the minimum Airflow version supported) via
78
+ ``pip install apache-airflow-providers-git``
79
+
80
+ The package supports the following python versions: 3.9,3.10,3.11,3.12
81
+
82
+ Requirements
83
+ ------------
84
+
85
+ ================== ==================
86
+ PIP package Version required
87
+ ================== ==================
88
+ ``apache-airflow`` ``>=3.0.0``
89
+ ``GitPython`` ``>=3.1.44``
90
+ ================== ==================
91
+
92
+ The changelog for the provider package can be found in the
93
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-git/0.0.1/changelog.html>`_.
94
+
@@ -0,0 +1,61 @@
1
+
2
+ .. Licensed to the Apache Software Foundation (ASF) under one
3
+ or more contributor license agreements. See the NOTICE file
4
+ distributed with this work for additional information
5
+ regarding copyright ownership. The ASF licenses this file
6
+ to you under the Apache License, Version 2.0 (the
7
+ "License"); you may not use this file except in compliance
8
+ with the License. You may obtain a copy of the License at
9
+
10
+ .. http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ .. Unless required by applicable law or agreed to in writing,
13
+ software distributed under the License is distributed on an
14
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ KIND, either express or implied. See the License for the
16
+ specific language governing permissions and limitations
17
+ under the License.
18
+
19
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
20
+
21
+ .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
22
+ ``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
23
+
24
+ Package ``apache-airflow-providers-git``
25
+
26
+ Release: ``0.0.1``
27
+
28
+
29
+ `Distributed version control system (GIT) <https://git-scm.com/>`__
30
+
31
+
32
+ Provider package
33
+ ----------------
34
+
35
+ This is a provider package for ``git`` provider. All classes for this provider package
36
+ are in ``airflow.providers.git`` python package.
37
+
38
+ You can find package information and changelog for the provider
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-git/0.0.1/>`_.
40
+
41
+ Installation
42
+ ------------
43
+
44
+ You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
45
+ for the minimum Airflow version supported) via
46
+ ``pip install apache-airflow-providers-git``
47
+
48
+ The package supports the following python versions: 3.9,3.10,3.11,3.12
49
+
50
+ Requirements
51
+ ------------
52
+
53
+ ================== ==================
54
+ PIP package Version required
55
+ ================== ==================
56
+ ``apache-airflow`` ``>=3.0.0``
57
+ ``GitPython`` ``>=3.1.44``
58
+ ================== ==================
59
+
60
+ The changelog for the provider package can be found in the
61
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-git/0.0.1/changelog.html>`_.
@@ -0,0 +1,40 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+ Bundles
19
+ =======
20
+
21
+ Use the :class:`~airflow.providers.git.bundles.git.GitDagBundle` to configure a Git bundle in your Airflow's
22
+ ``[dag_processor] dag_bundle_config_list``.
23
+
24
+ Example of using the GitDagBundle:
25
+
26
+ **JSON format example**:
27
+
28
+ .. code-block:: bash
29
+
30
+ export AIRFLOW__DAG_PROCESSOR__DAG_BUNDLE_CONFIG_LIST='[
31
+ {
32
+ "name": "my-git-repo",
33
+ "classpath": "airflow.providers.git.bundles.git.GitDagBundle",
34
+ "kwargs": {
35
+ "subdir": "dags",
36
+ "tracking_ref": "main",
37
+ "refresh_interval": 3600
38
+ }
39
+ }
40
+ ]'
@@ -0,0 +1,24 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+ 0.0.1
19
+ .....
20
+
21
+ .. note::
22
+ Provider is still WIP. It can be used with production but we may introduce breaking changes without following semver until version 1.0.0
23
+
24
+ * ``Initial version of git provider (#47636)``
@@ -0,0 +1,55 @@
1
+
2
+ .. Licensed to the Apache Software Foundation (ASF) under one
3
+ or more contributor license agreements. See the NOTICE file
4
+ distributed with this work for additional information
5
+ regarding copyright ownership. The ASF licenses this file
6
+ to you under the Apache License, Version 2.0 (the
7
+ "License"); you may not use this file except in compliance
8
+ with the License. You may obtain a copy of the License at
9
+
10
+ .. http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ .. Unless required by applicable law or agreed to in writing,
13
+ software distributed under the License is distributed on an
14
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ KIND, either express or implied. See the License for the
16
+ specific language governing permissions and limitations
17
+ under the License.
18
+
19
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
20
+
21
+ .. IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
22
+ `PROVIDER_COMMITS_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
23
+
24
+ .. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN!
25
+
26
+ Package apache-airflow-providers-git
27
+ ------------------------------------------------------
28
+
29
+ `Distributed version control system (GIT) <https://git-scm.com/>`__
30
+
31
+
32
+ This is detailed commit list of changes for versions provider package: ``git``.
33
+ For high-level changelog, see :doc:`package information including changelog <index>`.
34
+
35
+
36
+
37
+ 0.0.1
38
+ .....
39
+
40
+ Latest change: 2025-04-09
41
+
42
+ ================================================================================================== =========== ==================================================================================
43
+ Commit Committed Subject
44
+ ================================================================================================== =========== ==================================================================================
45
+ `4a1e2ff8ab <https://github.com/apache/airflow/commit/4a1e2ff8ab8e6abca1cb273dc55d651d971e49f2>`__ 2025-04-09 ``Mark git provider as ready (#48860)``
46
+ `c68f31d3db <https://github.com/apache/airflow/commit/c68f31d3db6b957b4aeede7a257cc0ba59f12ce1>`__ 2025-04-08 ``Remove dev0 suffix from Airlfow version (#48934)``
47
+ `7b2ec33c7a <https://github.com/apache/airflow/commit/7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f>`__ 2025-04-08 ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
48
+ `139673d3ce <https://github.com/apache/airflow/commit/139673d3ce5552c2cf8bcb2d202e97342c4b237c>`__ 2025-04-07 ``Remove fab from preinstalled providers (#48457)``
49
+ `67858fd7e7 <https://github.com/apache/airflow/commit/67858fd7e7ac82788854844c1e6ef5a35f1d0d23>`__ 2025-04-06 ``Improve documentation building iteration (#48760)``
50
+ `81ae7e2f71 <https://github.com/apache/airflow/commit/81ae7e2f71364b4a7d91432d53ce52b031e85d3b>`__ 2025-04-02 ``Fix git has_version check (#48707)``
51
+ `d4473555c0 <https://github.com/apache/airflow/commit/d4473555c0e7022e073489b7163d49102881a1a6>`__ 2025-04-02 ``Simplify tooling by switching completely to uv (#48223)``
52
+ `513bba7a65 <https://github.com/apache/airflow/commit/513bba7a6595cac9d47074a784c0b71d5414cb11>`__ 2025-03-29 ``Don't add auth token to git bundle view urls (#48516)``
53
+ `d7d9d48e6e <https://github.com/apache/airflow/commit/d7d9d48e6eef5cd04b5699b88ffcceab75679225>`__ 2025-03-28 ``Unify the usage of structlog.get_logger in the codebase (#48480)``
54
+ `08d9dc201e <https://github.com/apache/airflow/commit/08d9dc201ef9e35b87b03fdc45a251efbdad2b0c>`__ 2025-03-26 ``Move 'GitDagBundle' to providers (#47636)``
55
+ ================================================================================================== =========== ==================================================================================
@@ -0,0 +1,27 @@
1
+ # Disable Flake8 because of all the sphinx imports
2
+ #
3
+ # Licensed to the Apache Software Foundation (ASF) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The ASF licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+ """Configuration of Providers docs building."""
20
+
21
+ from __future__ import annotations
22
+
23
+ import os
24
+
25
+ os.environ["AIRFLOW_PACKAGE_NAME"] = "apache-airflow-providers-git"
26
+
27
+ from docs.provider_conf import * # noqa: F403
@@ -0,0 +1,53 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+
19
+
20
+ .. _howto/connection:ftp:
21
+
22
+ GIT Connection
23
+ ==============
24
+
25
+ The GIT connection type enables the GIT Integrations.
26
+
27
+ Authenticating to GIT
28
+ -----------------------
29
+
30
+ Authenticate to FTP using `ftplib
31
+ <https://docs.python.org/3/library/ftplib.html>`_.
32
+ i.e. indicate ``user``, ``password``, ``host``
33
+
34
+ Default Connection IDs
35
+ ----------------------
36
+
37
+ Hooks, bundles related to GIT use ``git_default`` by default.
38
+
39
+ Configuring the Connection
40
+ --------------------------
41
+ Username
42
+ Specify the git ``username``.
43
+
44
+ Repository URL (optional)
45
+ Specify the repository url e.g ``git@github.com/apache/airflow.git``.
46
+
47
+ Password (optional)
48
+ Specify the git ``password`` a.k.a ``ACCESS TOKEN`` if using https.
49
+
50
+ Extra (optional)
51
+ Specify the extra parameters (as json dictionary) that can be used in ftp connection.
52
+ You can specify the ``key_file`` path or ``private_key`` as extra parameters. You can
53
+ also optionally specify the ``strict_host_key_checking`` parameter.
@@ -0,0 +1,100 @@
1
+
2
+ .. Licensed to the Apache Software Foundation (ASF) under one
3
+ or more contributor license agreements. See the NOTICE file
4
+ distributed with this work for additional information
5
+ regarding copyright ownership. The ASF licenses this file
6
+ to you under the Apache License, Version 2.0 (the
7
+ "License"); you may not use this file except in compliance
8
+ with the License. You may obtain a copy of the License at
9
+
10
+ .. http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ .. Unless required by applicable law or agreed to in writing,
13
+ software distributed under the License is distributed on an
14
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ KIND, either express or implied. See the License for the
16
+ specific language governing permissions and limitations
17
+ under the License.
18
+
19
+ ``apache-airflow-providers-git``
20
+ ================================
21
+
22
+
23
+ .. toctree::
24
+ :hidden:
25
+ :maxdepth: 1
26
+ :caption: Basics
27
+
28
+ Home <self>
29
+ Changelog <changelog>
30
+ Security <security>
31
+
32
+ .. toctree::
33
+ :hidden:
34
+ :maxdepth: 1
35
+ :caption: References
36
+
37
+ Connection Types <connections/git>
38
+ Python API <_api/airflow/providers/git/index>
39
+
40
+ .. toctree::
41
+ :hidden:
42
+ :maxdepth: 1
43
+ :caption: Bundles
44
+
45
+ Bundles <bundles/index>
46
+
47
+ .. toctree::
48
+ :hidden:
49
+ :maxdepth: 1
50
+ :caption: Resources
51
+
52
+ PyPI Repository <https://pypi.org/project/apache-airflow-providers-git/>
53
+ Installing from sources <installing-providers-from-sources>
54
+ Python API <_api/airflow/providers/git/index>
55
+
56
+
57
+
58
+ .. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN AT RELEASE TIME!
59
+
60
+
61
+ .. toctree::
62
+ :hidden:
63
+ :maxdepth: 1
64
+ :caption: Commits
65
+
66
+ Detailed list of commits <commits>
67
+
68
+
69
+ apache-airflow-providers-git package
70
+ ------------------------------------------------------
71
+
72
+ `Distributed version control system (GIT) <https://git-scm.com/>`__
73
+
74
+
75
+ Release: 0.0.1
76
+
77
+ Provider package
78
+ ----------------
79
+
80
+ This package is for the ``git`` provider.
81
+ All classes for this package are included in the ``airflow.providers.git`` python package.
82
+
83
+ Installation
84
+ ------------
85
+
86
+ You can install this package on top of an existing Airflow 2 installation via
87
+ ``pip install apache-airflow-providers-git``.
88
+ For the minimum Airflow version supported, see ``Requirements`` below.
89
+
90
+ Requirements
91
+ ------------
92
+
93
+ The minimum Apache Airflow version supported by this provider distribution is ``3.0.0``.
94
+
95
+ ================== ==================
96
+ PIP package Version required
97
+ ================== ==================
98
+ ``apache-airflow`` ``>=3.0.0``
99
+ ``GitPython`` ``>=3.1.44``
100
+ ================== ==================
@@ -0,0 +1,18 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+ .. include:: /../../../devel-common/src/sphinx_exts/includes/installing-providers-from-sources.rst
@@ -0,0 +1,18 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+ .. include:: /../../../devel-common/src/sphinx_exts/includes/security.rst
@@ -0,0 +1,47 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The ASF licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ ---
19
+ package-name: apache-airflow-providers-git
20
+ name: GIT
21
+ description: |
22
+ `Distributed version control system (GIT) <https://git-scm.com/>`__
23
+
24
+ state: ready
25
+ source-date-epoch: 1742823216
26
+ # note that those versions are maintained by release manager - do not update them manually
27
+ versions:
28
+ - 0.0.1
29
+
30
+ integrations:
31
+ - integration-name: GIT (Git)
32
+ external-doc-url: https://git-scm.com/
33
+ tags: [software]
34
+
35
+ hooks:
36
+ - integration-name: GIT
37
+ python-modules:
38
+ - airflow.providers.git.hooks.git
39
+ bundles:
40
+ - integration-name: GIT
41
+ python-modules:
42
+ - airflow.providers.git.bundles.git
43
+
44
+
45
+ connection-types:
46
+ - hook-class-name: airflow.providers.git.hooks.git.GitHook
47
+ connection-type: git
@@ -0,0 +1,110 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The ASF licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ # NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
19
+
20
+ # IF YOU WANT TO MODIFY THIS FILE EXCEPT DEPENDENCIES, YOU SHOULD MODIFY THE TEMPLATE
21
+ # `pyproject_TEMPLATE.toml.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
22
+ [build-system]
23
+ requires = ["flit_core==3.12.0"]
24
+ build-backend = "flit_core.buildapi"
25
+
26
+ [project]
27
+ name = "apache-airflow-providers-git"
28
+ version = "0.0.1.rc1"
29
+ description = "Provider package apache-airflow-providers-git for Apache Airflow"
30
+ readme = "README.rst"
31
+ authors = [
32
+ {name="Apache Software Foundation", email="dev@airflow.apache.org"},
33
+ ]
34
+ maintainers = [
35
+ {name="Apache Software Foundation", email="dev@airflow.apache.org"},
36
+ ]
37
+ keywords = [ "airflow-provider", "git", "airflow", "integration" ]
38
+ classifiers = [
39
+ "Development Status :: 5 - Production/Stable",
40
+ "Environment :: Console",
41
+ "Environment :: Web Environment",
42
+ "Intended Audience :: Developers",
43
+ "Intended Audience :: System Administrators",
44
+ "Framework :: Apache Airflow",
45
+ "Framework :: Apache Airflow :: Provider",
46
+ "License :: OSI Approved :: Apache Software License",
47
+ "Programming Language :: Python :: 3.9",
48
+ "Programming Language :: Python :: 3.10",
49
+ "Programming Language :: Python :: 3.11",
50
+ "Programming Language :: Python :: 3.12",
51
+ "Topic :: System :: Monitoring",
52
+ ]
53
+ requires-python = "~=3.9"
54
+
55
+ # The dependencies should be modified in place in the generated file.
56
+ # Any change in the dependencies is preserved when the file is regenerated
57
+ # Make sure to run ``breeze static-checks --type update-providers-dependencies --all-files``
58
+ # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
59
+ dependencies = [
60
+ "apache-airflow>=3.0.0rc0",
61
+ "GitPython>=3.1.44",
62
+ ]
63
+
64
+ [dependency-groups]
65
+ dev = [
66
+ "apache-airflow",
67
+ "apache-airflow-task-sdk",
68
+ "apache-airflow-devel-common",
69
+ # Additional devel dependencies (do not remove this line and add extra development dependencies)
70
+ ]
71
+
72
+ # To build docs:
73
+ #
74
+ # uv run --group docs build-docs
75
+ #
76
+ # To enable auto-refreshing build with server:
77
+ #
78
+ # uv run --group docs build-docs --autobuild
79
+ #
80
+ # To see more options:
81
+ #
82
+ # uv run --group docs build-docs --help
83
+ #
84
+ docs = [
85
+ "apache-airflow-devel-common[docs]"
86
+ ]
87
+
88
+ [tool.uv.sources]
89
+ # These names must match the names as defined in the pyproject.toml of the workspace items,
90
+ # *not* the workspace folder paths
91
+ apache-airflow = {workspace = true}
92
+ apache-airflow-devel-common = {workspace = true}
93
+ apache-airflow-task-sdk = {workspace = true}
94
+ apache-airflow-providers-common-sql = {workspace = true}
95
+ apache-airflow-providers-standard = {workspace = true}
96
+
97
+ [project.urls]
98
+ "Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-git/0.0.1"
99
+ "Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-git/0.0.1/changelog.html"
100
+ "Bug Tracker" = "https://github.com/apache/airflow/issues"
101
+ "Source Code" = "https://github.com/apache/airflow"
102
+ "Slack Chat" = "https://s.apache.org/airflow-slack"
103
+ "Mastodon" = "https://fosstodon.org/@airflow"
104
+ "YouTube" = "https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/"
105
+
106
+ [project.entry-points."apache_airflow_provider"]
107
+ provider_info = "airflow.providers.git.get_provider_info:get_provider_info"
108
+
109
+ [tool.flit.module]
110
+ name = "airflow.providers.git"
@@ -0,0 +1,18 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The ASF licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ __path__ = __import__("pkgutil").extend_path(__path__, __name__) # type: ignore