apache-airflow-providers-sftp 4.7.0__tar.gz → 4.8.0__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.
Files changed (27) hide show
  1. {apache-airflow-providers-sftp-4.7.0/apache_airflow_providers_sftp.egg-info → apache_airflow_providers_sftp-4.8.0}/PKG-INFO +29 -23
  2. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/README.rst +10 -5
  3. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0/airflow/providers/sftp}/LICENSE +52 -0
  4. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/__init__.py +5 -6
  5. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/get_provider_info.py +5 -3
  6. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/operators/sftp.py +2 -2
  7. apache_airflow_providers_sftp-4.8.0/pyproject.toml +83 -0
  8. apache-airflow-providers-sftp-4.7.0/MANIFEST.in +0 -31
  9. apache-airflow-providers-sftp-4.7.0/NOTICE +0 -6
  10. apache-airflow-providers-sftp-4.7.0/PKG-INFO +0 -132
  11. apache-airflow-providers-sftp-4.7.0/apache_airflow_providers_sftp.egg-info/SOURCES.txt +0 -25
  12. apache-airflow-providers-sftp-4.7.0/apache_airflow_providers_sftp.egg-info/dependency_links.txt +0 -1
  13. apache-airflow-providers-sftp-4.7.0/apache_airflow_providers_sftp.egg-info/entry_points.txt +0 -2
  14. apache-airflow-providers-sftp-4.7.0/apache_airflow_providers_sftp.egg-info/not-zip-safe +0 -1
  15. apache-airflow-providers-sftp-4.7.0/apache_airflow_providers_sftp.egg-info/requires.txt +0 -9
  16. apache-airflow-providers-sftp-4.7.0/apache_airflow_providers_sftp.egg-info/top_level.txt +0 -1
  17. apache-airflow-providers-sftp-4.7.0/pyproject.toml +0 -179
  18. apache-airflow-providers-sftp-4.7.0/setup.cfg +0 -64
  19. apache-airflow-providers-sftp-4.7.0/setup.py +0 -52
  20. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/decorators/__init__.py +0 -0
  21. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/decorators/sensors/__init__.py +0 -0
  22. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/decorators/sensors/sftp.py +0 -0
  23. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/hooks/__init__.py +0 -0
  24. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/hooks/sftp.py +0 -0
  25. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/operators/__init__.py +0 -0
  26. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/sensors/__init__.py +0 -0
  27. {apache-airflow-providers-sftp-4.7.0 → apache_airflow_providers_sftp-4.8.0}/airflow/providers/sftp/sensors/sftp.py +0 -0
@@ -1,19 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apache-airflow-providers-sftp
3
- Version: 4.7.0
4
- Summary: Provider for Apache Airflow. Implements apache-airflow-providers-sftp package
5
- Home-page: https://airflow.apache.org/
6
- Download-URL: https://archive.apache.org/dist/airflow/providers
7
- Author: Apache Software Foundation
8
- Author-email: dev@airflow.apache.org
9
- License: Apache License 2.0
10
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/
11
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/changelog.html
12
- Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
13
- Project-URL: Source Code, https://github.com/apache/airflow
14
- Project-URL: Slack Chat, https://s.apache.org/airflow-slack
15
- Project-URL: Twitter, https://twitter.com/ApacheAirflow
16
- Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
3
+ Version: 4.8.0
4
+ Summary: Provider package apache-airflow-providers-sftp for Apache Airflow
5
+ Keywords: airflow-provider,sftp,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.8
9
+ Description-Content-Type: text/x-rst
17
10
  Classifier: Development Status :: 5 - Production/Stable
18
11
  Classifier: Environment :: Console
19
12
  Classifier: Environment :: Web Environment
@@ -27,12 +20,20 @@ Classifier: Programming Language :: Python :: 3.9
27
20
  Classifier: Programming Language :: Python :: 3.10
28
21
  Classifier: Programming Language :: Python :: 3.11
29
22
  Classifier: Topic :: System :: Monitoring
30
- Requires-Python: ~=3.8
31
- Description-Content-Type: text/x-rst
23
+ Requires-Dist: apache-airflow-providers-ssh>=2.1.0
24
+ Requires-Dist: apache-airflow>=2.6.0
25
+ Requires-Dist: paramiko>=2.8.0
26
+ Requires-Dist: apache-airflow-providers-openlineage ; extra == "openlineage"
27
+ Requires-Dist: apache-airflow-providers-ssh ; extra == "ssh"
28
+ Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
29
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.8.0/changelog.html
30
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.8.0
31
+ Project-URL: Slack Chat, https://s.apache.org/airflow-slack
32
+ Project-URL: Source Code, https://github.com/apache/airflow
33
+ Project-URL: Twitter, https://twitter.com/ApacheAirflow
34
+ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
32
35
  Provides-Extra: openlineage
33
36
  Provides-Extra: ssh
34
- License-File: LICENSE
35
- License-File: NOTICE
36
37
 
37
38
 
38
39
  .. Licensed to the Apache Software Foundation (ASF) under one
@@ -69,10 +70,16 @@ License-File: NOTICE
69
70
  specific language governing permissions and limitations
70
71
  under the License.
71
72
 
73
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
74
+ OVERWRITTEN WHEN PREPARING PACKAGES.
75
+
76
+ .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
77
+ `PROVIDER_README_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
78
+
72
79
 
73
80
  Package ``apache-airflow-providers-sftp``
74
81
 
75
- Release: ``4.7.0``
82
+ Release: ``4.8.0``
76
83
 
77
84
 
78
85
  `SSH File Transfer Protocol (SFTP) <https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer/>`__
@@ -85,8 +92,7 @@ This is a provider package for ``sftp`` provider. All classes for this provider
85
92
  are in ``airflow.providers.sftp`` python package.
86
93
 
87
94
  You can find package information and changelog for the provider
88
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/>`_.
89
-
95
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.8.0/>`_.
90
96
 
91
97
  Installation
92
98
  ------------
@@ -103,7 +109,7 @@ Requirements
103
109
  ================================ ==================
104
110
  PIP package Version required
105
111
  ================================ ==================
106
- ``apache-airflow`` ``>=2.5.0``
112
+ ``apache-airflow`` ``>=2.6.0``
107
113
  ``apache-airflow-providers-ssh`` ``>=2.1.0``
108
114
  ``paramiko`` ``>=2.8.0``
109
115
  ================================ ==================
@@ -129,4 +135,4 @@ Dependent package
129
135
  ============================================================================================================== ===============
130
136
 
131
137
  The changelog for the provider package can be found in the
132
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/changelog.html>`_.
138
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.8.0/changelog.html>`_.
@@ -33,10 +33,16 @@
33
33
  specific language governing permissions and limitations
34
34
  under the License.
35
35
 
36
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
37
+ OVERWRITTEN WHEN PREPARING PACKAGES.
38
+
39
+ .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
40
+ `PROVIDER_README_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
41
+
36
42
 
37
43
  Package ``apache-airflow-providers-sftp``
38
44
 
39
- Release: ``4.7.0``
45
+ Release: ``4.8.0``
40
46
 
41
47
 
42
48
  `SSH File Transfer Protocol (SFTP) <https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer/>`__
@@ -49,8 +55,7 @@ This is a provider package for ``sftp`` provider. All classes for this provider
49
55
  are in ``airflow.providers.sftp`` python package.
50
56
 
51
57
  You can find package information and changelog for the provider
52
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/>`_.
53
-
58
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.8.0/>`_.
54
59
 
55
60
  Installation
56
61
  ------------
@@ -67,7 +72,7 @@ Requirements
67
72
  ================================ ==================
68
73
  PIP package Version required
69
74
  ================================ ==================
70
- ``apache-airflow`` ``>=2.5.0``
75
+ ``apache-airflow`` ``>=2.6.0``
71
76
  ``apache-airflow-providers-ssh`` ``>=2.1.0``
72
77
  ``paramiko`` ``>=2.8.0``
73
78
  ================================ ==================
@@ -93,4 +98,4 @@ Dependent package
93
98
  ============================================================================================================== ===============
94
99
 
95
100
  The changelog for the provider package can be found in the
96
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/changelog.html>`_.
101
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.8.0/changelog.html>`_.
@@ -199,3 +199,55 @@ distributed under the License is distributed on an "AS IS" BASIS,
199
199
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
200
  See the License for the specific language governing permissions and
201
201
  limitations under the License.
202
+
203
+ ============================================================================
204
+ APACHE AIRFLOW SUBCOMPONENTS:
205
+
206
+ The Apache Airflow project contains subcomponents with separate copyright
207
+ notices and license terms. Your use of the source code for the these
208
+ subcomponents is subject to the terms and conditions of the following
209
+ licenses.
210
+
211
+
212
+ ========================================================================
213
+ Third party Apache 2.0 licenses
214
+ ========================================================================
215
+
216
+ The following components are provided under the Apache 2.0 License.
217
+ See project link for details. The text of each license is also included
218
+ at licenses/LICENSE-[project].txt.
219
+
220
+ (ALv2 License) hue v4.3.0 (https://github.com/cloudera/hue/)
221
+ (ALv2 License) jqclock v2.3.0 (https://github.com/JohnRDOrazio/jQuery-Clock-Plugin)
222
+ (ALv2 License) bootstrap3-typeahead v4.0.2 (https://github.com/bassjobsen/Bootstrap-3-Typeahead)
223
+ (ALv2 License) connexion v2.7.0 (https://github.com/zalando/connexion)
224
+
225
+ ========================================================================
226
+ MIT licenses
227
+ ========================================================================
228
+
229
+ The following components are provided under the MIT License. See project link for details.
230
+ The text of each license is also included at licenses/LICENSE-[project].txt.
231
+
232
+ (MIT License) jquery v3.5.1 (https://jquery.org/license/)
233
+ (MIT License) dagre-d3 v0.6.4 (https://github.com/cpettitt/dagre-d3)
234
+ (MIT License) bootstrap v3.4.1 (https://github.com/twbs/bootstrap/)
235
+ (MIT License) d3-tip v0.9.1 (https://github.com/Caged/d3-tip)
236
+ (MIT License) dataTables v1.10.25 (https://datatables.net)
237
+ (MIT License) normalize.css v3.0.2 (http://necolas.github.io/normalize.css/)
238
+ (MIT License) ElasticMock v1.3.2 (https://github.com/vrcmarcos/elasticmock)
239
+ (MIT License) MomentJS v2.24.0 (http://momentjs.com/)
240
+ (MIT License) eonasdan-bootstrap-datetimepicker v4.17.49 (https://github.com/eonasdan/bootstrap-datetimepicker/)
241
+
242
+ ========================================================================
243
+ BSD 3-Clause licenses
244
+ ========================================================================
245
+ The following components are provided under the BSD 3-Clause license. See project links for details.
246
+ The text of each license is also included at licenses/LICENSE-[project].txt.
247
+
248
+ (BSD 3 License) d3 v5.16.0 (https://d3js.org)
249
+ (BSD 3 License) d3-shape v2.1.0 (https://github.com/d3/d3-shape)
250
+ (BSD 3 License) cgroupspy 0.2.1 (https://github.com/cloudsigma/cgroupspy)
251
+
252
+ ========================================================================
253
+ See licenses/LICENSES-ui.txt for packages used in `/airflow/www`
@@ -1,4 +1,3 @@
1
- #
2
1
  # Licensed to the Apache Software Foundation (ASF) under one
3
2
  # or more contributor license agreements. See the NOTICE file
4
3
  # distributed with this work for additional information
@@ -19,8 +18,8 @@
19
18
  # NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
20
19
  # OVERWRITTEN WHEN PREPARING DOCUMENTATION FOR THE PACKAGES.
21
20
  #
22
- # IF YOU WANT TO MODIFY IT, YOU SHOULD MODIFY THE TEMPLATE
23
- # `PROVIDER__INIT__PY_TEMPLATE.py.jinja2` IN the `dev/provider_packages` DIRECTORY
21
+ # IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
22
+ # `PROVIDER__INIT__PY_TEMPLATE.py.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
24
23
  #
25
24
  from __future__ import annotations
26
25
 
@@ -28,7 +27,7 @@ import packaging.version
28
27
 
29
28
  __all__ = ["__version__"]
30
29
 
31
- __version__ = "4.7.0"
30
+ __version__ = "4.8.0"
32
31
 
33
32
  try:
34
33
  from airflow import __version__ as airflow_version
@@ -36,8 +35,8 @@ except ImportError:
36
35
  from airflow.version import version as airflow_version
37
36
 
38
37
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
39
- "2.5.0"
38
+ "2.6.0"
40
39
  ):
41
40
  raise RuntimeError(
42
- f"The package `apache-airflow-providers-sftp:{__version__}` requires Apache Airflow 2.5.0+" # NOQA: E501
41
+ f"The package `apache-airflow-providers-sftp:{__version__}` needs Apache Airflow 2.6.0+"
43
42
  )
@@ -18,8 +18,8 @@
18
18
  # NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
19
19
  # OVERWRITTEN WHEN PREPARING PACKAGES.
20
20
  #
21
- # IF YOU WANT TO MODIFY IT, YOU SHOULD MODIFY THE TEMPLATE
22
- # `get_provider_info_TEMPLATE.py.jinja2` IN the `provider_packages` DIRECTORY
21
+ # IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
22
+ # `get_provider_info_TEMPLATE.py.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
23
23
 
24
24
 
25
25
  def get_provider_info():
@@ -28,7 +28,9 @@ def get_provider_info():
28
28
  "name": "SFTP",
29
29
  "description": "`SSH File Transfer Protocol (SFTP) <https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer/>`__\n",
30
30
  "suspended": False,
31
+ "source-date-epoch": 1701983416,
31
32
  "versions": [
33
+ "4.8.0",
32
34
  "4.7.0",
33
35
  "4.6.1",
34
36
  "4.6.0",
@@ -60,7 +62,7 @@ def get_provider_info():
60
62
  "1.1.0",
61
63
  "1.0.0",
62
64
  ],
63
- "dependencies": ["apache-airflow>=2.5.0", "apache-airflow-providers-ssh>=2.1.0", "paramiko>=2.8.0"],
65
+ "dependencies": ["apache-airflow>=2.6.0", "apache-airflow-providers-ssh>=2.1.0", "paramiko>=2.8.0"],
64
66
  "integrations": [
65
67
  {
66
68
  "integration-name": "SSH File Transfer Protocol (SFTP)",
@@ -210,7 +210,7 @@ class SFTPOperator(BaseOperator):
210
210
  local_host = socket.gethostbyname(local_host)
211
211
  except Exception as e:
212
212
  self.log.warning(
213
- f"Failed to resolve local hostname. Using the hostname got by socket.gethostbyname() without resolution. {e}", # noqa: E501
213
+ f"Failed to resolve local hostname. Using the hostname got by socket.gethostbyname() without resolution. {e}",
214
214
  exc_info=True,
215
215
  )
216
216
 
@@ -225,7 +225,7 @@ class SFTPOperator(BaseOperator):
225
225
  remote_host = socket.gethostbyname(remote_host)
226
226
  except OSError as e:
227
227
  self.log.warning(
228
- f"Failed to resolve remote hostname. Using the provided hostname without resolution. {e}", # noqa: E501
228
+ f"Failed to resolve remote hostname. Using the provided hostname without resolution. {e}",
229
229
  exc_info=True,
230
230
  )
231
231
 
@@ -0,0 +1,83 @@
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
20
+ # OVERWRITTEN WHEN PREPARING PACKAGES.
21
+
22
+ # IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
23
+ # `pyproject_TEMPLATE.toml.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
24
+ #
25
+ [build-system]
26
+ requires = ["flit_core >=3.2,<4"]
27
+ build-backend = "flit_core.buildapi"
28
+
29
+ [project]
30
+ name = "apache-airflow-providers-sftp"
31
+ version = "4.8.0"
32
+ description = "Provider package apache-airflow-providers-sftp for Apache Airflow"
33
+ readme = "README.rst"
34
+ authors = [
35
+ {name="Apache Software Foundation", email="dev@airflow.apache.org"},
36
+ ]
37
+ maintainers = [
38
+ {name="Apache Software Foundation", email="dev@airflow.apache.org"},
39
+ ]
40
+ keywords = [ "airflow-provider", "sftp", "airflow", "integration" ]
41
+ classifiers = [
42
+ "Development Status :: 5 - Production/Stable",
43
+ "Environment :: Console",
44
+ "Environment :: Web Environment",
45
+ "Intended Audience :: Developers",
46
+ "Intended Audience :: System Administrators",
47
+ "Framework :: Apache Airflow",
48
+ "Framework :: Apache Airflow :: Provider",
49
+ "License :: OSI Approved :: Apache Software License",
50
+ "Programming Language :: Python :: 3.8",
51
+ "Programming Language :: Python :: 3.9",
52
+ "Programming Language :: Python :: 3.10",
53
+ "Programming Language :: Python :: 3.11",
54
+ "Topic :: System :: Monitoring",
55
+ ]
56
+ requires-python = "~=3.8"
57
+ dependencies = [
58
+ "apache-airflow-providers-ssh>=2.1.0",
59
+ "apache-airflow>=2.6.0",
60
+ "paramiko>=2.8.0",
61
+ ]
62
+
63
+ [project.urls]
64
+ "Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.8.0"
65
+ "Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.8.0/changelog.html"
66
+ "Bug Tracker" = "https://github.com/apache/airflow/issues"
67
+ "Source Code" = "https://github.com/apache/airflow"
68
+ "Slack Chat" = "https://s.apache.org/airflow-slack"
69
+ "Twitter" = "https://twitter.com/ApacheAirflow"
70
+ "YouTube" = "https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/"
71
+
72
+ [project.entry-points."apache_airflow_provider"]
73
+ provider_info = "airflow.providers.sftp.get_provider_info:get_provider_info"
74
+ [project.optional-dependencies]
75
+ "openlineage" = [
76
+ "apache-airflow-providers-openlineage",
77
+ ]
78
+ "ssh" = [
79
+ "apache-airflow-providers-ssh",
80
+ ]
81
+
82
+ [tool.flit.module]
83
+ name = "airflow.providers.sftp"
@@ -1,31 +0,0 @@
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
20
- # OVERWRITTEN WHEN PREPARING PACKAGES.
21
-
22
- # IF YOU WANT TO MODIFY IT, YOU SHOULD MODIFY THE TEMPLATE
23
- # `MANIFEST_TEMPLATE.py.jinja2` IN the `provider_packages` DIRECTORY
24
-
25
-
26
-
27
-
28
- include NOTICE
29
- include LICENSE
30
- include CHANGELOG.rst
31
- global-exclude __pycache__ *.pyc
@@ -1,6 +0,0 @@
1
- Apache Airflow
2
- Copyright 2016-2021 The Apache Software Foundation
3
-
4
- This product includes software developed at The Apache Software
5
- Foundation (http://www.apache.org/).
6
- =======================================================================
@@ -1,132 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: apache-airflow-providers-sftp
3
- Version: 4.7.0
4
- Summary: Provider for Apache Airflow. Implements apache-airflow-providers-sftp package
5
- Home-page: https://airflow.apache.org/
6
- Download-URL: https://archive.apache.org/dist/airflow/providers
7
- Author: Apache Software Foundation
8
- Author-email: dev@airflow.apache.org
9
- License: Apache License 2.0
10
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/
11
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/changelog.html
12
- Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
13
- Project-URL: Source Code, https://github.com/apache/airflow
14
- Project-URL: Slack Chat, https://s.apache.org/airflow-slack
15
- Project-URL: Twitter, https://twitter.com/ApacheAirflow
16
- Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
17
- Classifier: Development Status :: 5 - Production/Stable
18
- Classifier: Environment :: Console
19
- Classifier: Environment :: Web Environment
20
- Classifier: Intended Audience :: Developers
21
- Classifier: Intended Audience :: System Administrators
22
- Classifier: Framework :: Apache Airflow
23
- Classifier: Framework :: Apache Airflow :: Provider
24
- Classifier: License :: OSI Approved :: Apache Software License
25
- Classifier: Programming Language :: Python :: 3.8
26
- Classifier: Programming Language :: Python :: 3.9
27
- Classifier: Programming Language :: Python :: 3.10
28
- Classifier: Programming Language :: Python :: 3.11
29
- Classifier: Topic :: System :: Monitoring
30
- Requires-Python: ~=3.8
31
- Description-Content-Type: text/x-rst
32
- Provides-Extra: openlineage
33
- Provides-Extra: ssh
34
- License-File: LICENSE
35
- License-File: NOTICE
36
-
37
-
38
- .. Licensed to the Apache Software Foundation (ASF) under one
39
- or more contributor license agreements. See the NOTICE file
40
- distributed with this work for additional information
41
- regarding copyright ownership. The ASF licenses this file
42
- to you under the Apache License, Version 2.0 (the
43
- "License"); you may not use this file except in compliance
44
- with the License. You may obtain a copy of the License at
45
-
46
- .. http://www.apache.org/licenses/LICENSE-2.0
47
-
48
- .. Unless required by applicable law or agreed to in writing,
49
- software distributed under the License is distributed on an
50
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
51
- KIND, either express or implied. See the License for the
52
- specific language governing permissions and limitations
53
- under the License.
54
-
55
- .. Licensed to the Apache Software Foundation (ASF) under one
56
- or more contributor license agreements. See the NOTICE file
57
- distributed with this work for additional information
58
- regarding copyright ownership. The ASF licenses this file
59
- to you under the Apache License, Version 2.0 (the
60
- "License"); you may not use this file except in compliance
61
- with the License. You may obtain a copy of the License at
62
-
63
- .. http://www.apache.org/licenses/LICENSE-2.0
64
-
65
- .. Unless required by applicable law or agreed to in writing,
66
- software distributed under the License is distributed on an
67
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
68
- KIND, either express or implied. See the License for the
69
- specific language governing permissions and limitations
70
- under the License.
71
-
72
-
73
- Package ``apache-airflow-providers-sftp``
74
-
75
- Release: ``4.7.0``
76
-
77
-
78
- `SSH File Transfer Protocol (SFTP) <https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer/>`__
79
-
80
-
81
- Provider package
82
- ----------------
83
-
84
- This is a provider package for ``sftp`` provider. All classes for this provider package
85
- are in ``airflow.providers.sftp`` python package.
86
-
87
- You can find package information and changelog for the provider
88
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/>`_.
89
-
90
-
91
- Installation
92
- ------------
93
-
94
- You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
95
- for the minimum Airflow version supported) via
96
- ``pip install apache-airflow-providers-sftp``
97
-
98
- The package supports the following python versions: 3.8,3.9,3.10,3.11
99
-
100
- Requirements
101
- ------------
102
-
103
- ================================ ==================
104
- PIP package Version required
105
- ================================ ==================
106
- ``apache-airflow`` ``>=2.5.0``
107
- ``apache-airflow-providers-ssh`` ``>=2.1.0``
108
- ``paramiko`` ``>=2.8.0``
109
- ================================ ==================
110
-
111
- Cross provider package dependencies
112
- -----------------------------------
113
-
114
- Those are dependencies that might be needed in order to use all the features of the package.
115
- You need to install the specified provider packages in order to use them.
116
-
117
- You can install such cross-provider dependencies when installing from PyPI. For example:
118
-
119
- .. code-block:: bash
120
-
121
- pip install apache-airflow-providers-sftp[openlineage]
122
-
123
-
124
- ============================================================================================================== ===============
125
- Dependent package Extra
126
- ============================================================================================================== ===============
127
- `apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
128
- `apache-airflow-providers-ssh <https://airflow.apache.org/docs/apache-airflow-providers-ssh>`_ ``ssh``
129
- ============================================================================================================== ===============
130
-
131
- The changelog for the provider package can be found in the
132
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/changelog.html>`_.
@@ -1,25 +0,0 @@
1
- LICENSE
2
- MANIFEST.in
3
- NOTICE
4
- README.rst
5
- pyproject.toml
6
- setup.cfg
7
- setup.py
8
- airflow/providers/sftp/__init__.py
9
- airflow/providers/sftp/get_provider_info.py
10
- airflow/providers/sftp/decorators/__init__.py
11
- airflow/providers/sftp/decorators/sensors/__init__.py
12
- airflow/providers/sftp/decorators/sensors/sftp.py
13
- airflow/providers/sftp/hooks/__init__.py
14
- airflow/providers/sftp/hooks/sftp.py
15
- airflow/providers/sftp/operators/__init__.py
16
- airflow/providers/sftp/operators/sftp.py
17
- airflow/providers/sftp/sensors/__init__.py
18
- airflow/providers/sftp/sensors/sftp.py
19
- apache_airflow_providers_sftp.egg-info/PKG-INFO
20
- apache_airflow_providers_sftp.egg-info/SOURCES.txt
21
- apache_airflow_providers_sftp.egg-info/dependency_links.txt
22
- apache_airflow_providers_sftp.egg-info/entry_points.txt
23
- apache_airflow_providers_sftp.egg-info/not-zip-safe
24
- apache_airflow_providers_sftp.egg-info/requires.txt
25
- apache_airflow_providers_sftp.egg-info/top_level.txt
@@ -1,2 +0,0 @@
1
- [apache_airflow_provider]
2
- provider_info = airflow.providers.sftp.get_provider_info:get_provider_info
@@ -1,9 +0,0 @@
1
- apache-airflow-providers-ssh>=2.1.0
2
- apache-airflow>=2.5.0
3
- paramiko>=2.8.0
4
-
5
- [openlineage]
6
- apache-airflow-providers-openlineage
7
-
8
- [ssh]
9
- apache-airflow-providers-ssh
@@ -1,179 +0,0 @@
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
- [tool.black]
18
- line-length = 110
19
- target-version = ['py38', 'py39', 'py310', 'py311']
20
-
21
- # Editable installs are currently broken using setuptools 64.0.0 and above. The problem is tracked in
22
- # https://github.com/pypa/setuptools/issues/3548. We're also discussing how we could potentially fix
23
- # this problem on our end in issue https://github.com/apache/airflow/issues/30764. Until then we need
24
- # to use one of the following workarounds locally for editable installs:
25
- # 1) Pin setuptools <= 63.4.3 below in the [build-system] section.
26
- # 2) Include your airflow source code directory in PYTHONPATH.
27
- [build-system]
28
- requires = ['setuptools==67.2.0']
29
- build-backend = "setuptools.build_meta"
30
-
31
- [tool.ruff]
32
- target-version = "py38"
33
- typing-modules = ["airflow.typing_compat"]
34
- line-length = 110
35
- extend-exclude = [
36
- ".eggs",
37
- "airflow/_vendor/*",
38
- "airflow/providers/google/ads/_vendor/*",
39
- # The files generated by stubgen aren't 100% valid syntax it turns out, and we don't ship them, so we can
40
- # ignore them in ruff
41
- "airflow/providers/common/sql/*/*.pyi",
42
- "airflow/migrations/versions/*.py",
43
- "tests/dags/test_imports.py",
44
- ]
45
-
46
- extend-select = [
47
- "I", # Missing required import (auto-fixable)
48
- "UP", # Pyupgrade
49
- "RUF100", # Unused noqa (auto-fixable)
50
-
51
- # implicit single-line string concatenation
52
- "ISC001",
53
- # We ignore more pydocstyle than we enable, so be more selective at what we enable
54
- "D101",
55
- "D106",
56
- "D2",
57
- "D3",
58
- "D400",
59
- # "D401", # Not enabled by ruff, but we don't want it
60
- "D402",
61
- "D403",
62
- "D412",
63
- "D419",
64
- "TCH001", # typing-only-first-party-import
65
- "TCH002", # typing-only-third-party-import
66
- "TID251",
67
- ]
68
- extend-ignore = [
69
- "D203",
70
- "D212",
71
- "D213",
72
- "D214",
73
- "D215",
74
- "E731",
75
- ]
76
-
77
- namespace-packages = ["airflow/providers"]
78
-
79
- [tool.pytest.ini_options]
80
- # * Disable `flaky` plugin for pytest. This plugin conflicts with `rerunfailures` because provide same marker.
81
- # * Disable `nose` builtin plugin for pytest. This feature deprecated in 7.2 and will be removed in pytest>=8
82
- # * And we focus on use native pytest capabilities rather than adopt another frameworks.
83
- addopts = "-rasl --verbosity=2 -p no:flaky -p no:nose --asyncio-mode=strict"
84
- norecursedirs = [
85
- ".eggs",
86
- "airflow",
87
- "tests/dags_with_system_exit",
88
- "tests/test_utils",
89
- "tests/dags_corrupted",
90
- "tests/dags",
91
- "tests/system/providers/google/cloud/dataproc/resources",
92
- "tests/system/providers/google/cloud/gcs/resources",
93
- ]
94
- log_level = "INFO"
95
- filterwarnings = [
96
- "error::pytest.PytestCollectionWarning",
97
- "ignore::DeprecationWarning:flask_appbuilder.filemanager",
98
- "ignore::DeprecationWarning:flask_appbuilder.widgets",
99
- # https://github.com/dpgaspar/Flask-AppBuilder/pull/1940
100
- "ignore::DeprecationWarning:flask_sqlalchemy",
101
- # https://github.com/dpgaspar/Flask-AppBuilder/pull/1903
102
- "ignore::DeprecationWarning:apispec.utils",
103
- ]
104
- python_files = [
105
- "test_*.py",
106
- "example_*.py",
107
- ]
108
- testpaths = [
109
- "tests",
110
- ]
111
-
112
- [tool.ruff.isort]
113
- required-imports = ["from __future__ import annotations"]
114
- combine-as-imports = true
115
-
116
- [tool.ruff.per-file-ignores]
117
- "airflow/models/__init__.py" = ["F401"]
118
- "airflow/models/sqla_models.py" = ["F401"]
119
-
120
- # The test_python.py is needed because adding __future__.annotations breaks runtime checks that are
121
- # needed for the test to work
122
- "tests/decorators/test_python.py" = ["I002"]
123
-
124
- # The Pydantic representations of SqlAlchemy Models are not parsed well with Pydantic
125
- # when __future__.annotations is used so we need to skip them from upgrading
126
- # Pydantic also require models to be imported during execution
127
- "airflow/serialization/pydantic/*.py" = ["I002", "UP007", "TCH001"]
128
-
129
- # Ignore pydoc style from these
130
- "*.pyi" = ["D"]
131
- "tests/*" = ["D"]
132
- "scripts/*" = ["D"]
133
- "dev/*" = ["D"]
134
- "docs/*" = ["D"]
135
- "provider_packages/*" = ["D"]
136
- "docker_tests/*" = ["D"]
137
- "kubernetes_tests/*" = ["D"]
138
- "*/example_dags/*" = ["D"]
139
- "chart/*" = ["D"]
140
-
141
- # All of the modules which have an extra license header (i.e. that we copy from another project) need to
142
- # ignore E402 -- module level import not at top level
143
- "airflow/api/auth/backend/kerberos_auth.py" = ["E402"]
144
- "airflow/security/kerberos.py" = ["E402"]
145
- "airflow/security/utils.py" = ["E402"]
146
- "tests/providers/elasticsearch/log/elasticmock/__init__.py" = ["E402"]
147
- "tests/providers/elasticsearch/log/elasticmock/utilities/__init__.py" = ["E402"]
148
-
149
- [tool.ruff.flake8-tidy-imports.banned-api]
150
- "airflow.AirflowException".msg = "Use airflow.exceptions.AirflowException instead."
151
- "airflow.Dataset".msg = "Use airflow.datasets.Dataset instead."
152
-
153
- [tool.coverage.run]
154
- branch = true
155
- relative_files = true
156
- source = ["airflow"]
157
- omit = [
158
- "airflow/_vendor/**",
159
- "airflow/contrib/**",
160
- "airflow/example_dags/**",
161
- "airflow/migrations/**",
162
- "airflow/providers/**/example_dags/**",
163
- "airflow/www/node_modules/**",
164
- "airflow/providers/google/ads/_vendor/**",
165
- ]
166
-
167
- [tool.coverage.report]
168
- skip_empty = true
169
- exclude_also = [
170
- "def __repr__",
171
- "raise AssertionError",
172
- "raise NotImplementedError",
173
- "if __name__ == .__main__.:",
174
- "@(abc\\.)?abstractmethod",
175
- "@(typing(_extensions)?\\.)?overload",
176
- "if TYPE_CHECKING:"
177
- ]
178
- [tool.ruff.flake8-type-checking]
179
- exempt-modules = ["typing", "typing_extensions"]
@@ -1,64 +0,0 @@
1
- [metadata]
2
- name = apache-airflow-providers-sftp
3
- summary = Provider for Apache Airflow. Implements apache-airflow-providers-sftp package
4
- description = Provider package apache-airflow-providers-sftp for Apache Airflow
5
- long_description = file: README.rst
6
- long_description_content_type = text/x-rst
7
- author = Apache Software Foundation
8
- author_email = dev@airflow.apache.org
9
- url = https://airflow.apache.org/
10
- download_url = https://archive.apache.org/dist/airflow/providers
11
- license = Apache License 2.0
12
- license_files =
13
- LICENSE
14
- NOTICE
15
- classifiers =
16
- Development Status :: 5 - Production/Stable
17
- Environment :: Console
18
- Environment :: Web Environment
19
- Intended Audience :: Developers
20
- Intended Audience :: System Administrators
21
- Framework :: Apache Airflow
22
- Framework :: Apache Airflow :: Provider
23
- License :: OSI Approved :: Apache Software License
24
- Programming Language :: Python :: 3.8
25
- Programming Language :: Python :: 3.9
26
- Programming Language :: Python :: 3.10
27
- Programming Language :: Python :: 3.11
28
- Topic :: System :: Monitoring
29
- project_urls =
30
- Documentation=https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/
31
- Changelog=https://airflow.apache.org/docs/apache-airflow-providers-sftp/4.7.0/changelog.html
32
- Bug Tracker=https://github.com/apache/airflow/issues
33
- Source Code=https://github.com/apache/airflow
34
- Slack Chat=https://s.apache.org/airflow-slack
35
- Twitter=https://twitter.com/ApacheAirflow
36
- YouTube=https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
37
-
38
- [bdist_wheel]
39
- python_tag = py3
40
-
41
- [options]
42
- zip_safe = False
43
- include_package_data = True
44
- python_requires = ~=3.8
45
- packages = find:
46
- setup_requires =
47
- setuptools
48
- wheel
49
- install_requires =
50
- apache-airflow-providers-ssh>=2.1.0
51
- apache-airflow>=2.5.0
52
- paramiko>=2.8.0
53
-
54
- [options.entry_points]
55
- apache_airflow_provider =
56
- provider_info=airflow.providers.sftp.get_provider_info:get_provider_info
57
-
58
- [files]
59
- packages = airflow.providers.sftp
60
-
61
- [egg_info]
62
- tag_build =
63
- tag_date = 0
64
-
@@ -1,52 +0,0 @@
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
20
- # OVERWRITTEN WHEN PREPARING PACKAGES.
21
- #
22
- # IF YOU WANT TO MODIFY IT, YOU SHOULD MODIFY THE TEMPLATE
23
- # `SETUP_TEMPLATE.py.jinja2` IN the `dev/provider_packages` DIRECTORY
24
-
25
- """Setup.py for the apache-airflow-providers-sftp package."""
26
-
27
- from setuptools import find_namespace_packages, setup
28
-
29
- version = "4.7.0"
30
-
31
-
32
- def do_setup():
33
- """Perform the package apache-airflow-providers-sftp setup."""
34
- setup(
35
- version=version,
36
- extras_require={
37
- "openlineage": ["apache-airflow-providers-openlineage"],
38
- "ssh": ["apache-airflow-providers-ssh"],
39
- },
40
- packages=find_namespace_packages(
41
- include=[
42
- "airflow.providers.sftp",
43
- "airflow.providers.sftp.*",
44
- "airflow.providers.sftp_vendor",
45
- "airflow.providers.sftp_vendor.*",
46
- ],
47
- ),
48
- )
49
-
50
-
51
- if __name__ == "__main__":
52
- do_setup()