pydantic-airflow 0.0.0__tar.gz → 0.1.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.
@@ -0,0 +1,143 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+ *.dll
9
+
10
+ # Distribution / packaging
11
+ .Python
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ pip-wheel-metadata/
25
+ share/python-wheels/
26
+ *.egg-info/
27
+ .installed.cfg
28
+ *.egg
29
+ MANIFEST
30
+
31
+ # PyInstaller
32
+ # Usually these files are written by a python script from a template
33
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
+ *.manifest
35
+ *.spec
36
+
37
+ # Installer logs
38
+ pip-log.txt
39
+ pip-delete-this-directory.txt
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ junit.xml
51
+ *.cover
52
+ *.py,cover
53
+ .hypothesis/
54
+ .pytest_cache/
55
+
56
+ # Translations
57
+ *.mo
58
+ *.pot
59
+
60
+ # Django stuff:
61
+ *.log
62
+ local_settings.py
63
+ db.sqlite3
64
+ db.sqlite3-journal
65
+
66
+ # Flask stuff:
67
+ instance/
68
+ .webassets-cache
69
+
70
+ # Scrapy stuff:
71
+ .scrapy
72
+
73
+ # PyBuilder
74
+ target/
75
+
76
+ # IPython
77
+ profile_default/
78
+ ipython_config.py
79
+
80
+ # pyenv
81
+ .python-version
82
+
83
+ # pipenv
84
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
85
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
86
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
87
+ # install all needed dependencies.
88
+ #Pipfile.lock
89
+
90
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
91
+ __pypackages__/
92
+
93
+ # Celery stuff
94
+ celerybeat-schedule
95
+ celerybeat.pid
96
+
97
+ # SageMath parsed files
98
+ *.sage.py
99
+
100
+ # Environments
101
+ .env
102
+ .venv
103
+ env/
104
+ venv/
105
+ ENV/
106
+ env.bak/
107
+ venv.bak/
108
+
109
+ # Spyder project settings
110
+ .spyderproject
111
+ .spyproject
112
+
113
+ # Rope project settings
114
+ .ropeproject
115
+
116
+ # mkdocs documentation
117
+ /site
118
+
119
+ # mypy
120
+ .mypy_cache/
121
+ .dmypy.json
122
+ dmypy.json
123
+
124
+ # Pyre type checker
125
+ .pyre/
126
+
127
+ # Documentation
128
+ docs/_build/
129
+ /site
130
+ docs/api
131
+ docs/index.md
132
+ _template/labextension
133
+
134
+ # Jupyter
135
+ .ipynb_checkpoints
136
+ .autoversion
137
+
138
+ # Mac
139
+ .DS_Store
140
+
141
+ # Rust
142
+ target
143
+
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2024, the pydantic-airflow authors
189
+ Copyright 2024 the pydantic-airflow authors
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: pydantic-airflow
3
+ Version: 0.1.0
4
+ Summary: Pydantic models for Apache Airflow
5
+ Project-URL: Repository, https://github.com/airflow-laminar/pydantic-airflow
6
+ Project-URL: Homepage, https://github.com/airflow-laminar/pydantic-airflow
7
+ Author-email: the pydantic-airflow authors <t.paine154@gmail.com>
8
+ License: Apache-2.0
9
+ License-File: LICENSE
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: Implementation :: CPython
18
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
19
+ Requires-Python: >=3.9
20
+ Provides-Extra: develop
21
+ Requires-Dist: build; extra == 'develop'
22
+ Requires-Dist: bump-my-version; extra == 'develop'
23
+ Requires-Dist: check-manifest; extra == 'develop'
24
+ Requires-Dist: hatchling; extra == 'develop'
25
+ Requires-Dist: pytest; extra == 'develop'
26
+ Requires-Dist: pytest-cov; extra == 'develop'
27
+ Requires-Dist: ruff; extra == 'develop'
28
+ Requires-Dist: twine; extra == 'develop'
29
+ Requires-Dist: wheel; extra == 'develop'
30
+ Description-Content-Type: text/markdown
31
+
32
+ # pydantic-airflow
33
+
34
+ Pydantic models for Apache Airflow
35
+
36
+ [![Build Status](https://github.com/airflow-laminar/pydantic-airflow/actions/workflows/build.yml/badge.svg?branch=main&event=push)](https://github.com/airflow-laminar/pydantic-airflow/actions/workflows/build.yml)
37
+ [![codecov](https://codecov.io/gh/airflow-laminar/pydantic-airflow/branch/main/graph/badge.svg)](https://codecov.io/gh/airflow-laminar/pydantic-airflow)
38
+ [![License](https://img.shields.io/github/license/airflow-laminar/pydantic-airflow)](https://github.com/airflow-laminar/pydantic-airflow)
39
+ [![PyPI](https://img.shields.io/pypi/v/pydantic-airflow.svg)](https://pypi.python.org/pypi/pydantic-airflow)
40
+
41
+ ## Overview
42
+ Wrapper for [airflow-pydantic](https://github.com/airflow-laminar/airflow-pydantic).
43
+
44
+
45
+ > [!NOTE]
46
+ > This library was generated using [copier](https://copier.readthedocs.io/en/stable/) from the [Base Python Project Template repository](https://github.com/python-project-templates/base).
@@ -0,0 +1,15 @@
1
+ # pydantic-airflow
2
+
3
+ Pydantic models for Apache Airflow
4
+
5
+ [![Build Status](https://github.com/airflow-laminar/pydantic-airflow/actions/workflows/build.yml/badge.svg?branch=main&event=push)](https://github.com/airflow-laminar/pydantic-airflow/actions/workflows/build.yml)
6
+ [![codecov](https://codecov.io/gh/airflow-laminar/pydantic-airflow/branch/main/graph/badge.svg)](https://codecov.io/gh/airflow-laminar/pydantic-airflow)
7
+ [![License](https://img.shields.io/github/license/airflow-laminar/pydantic-airflow)](https://github.com/airflow-laminar/pydantic-airflow)
8
+ [![PyPI](https://img.shields.io/pypi/v/pydantic-airflow.svg)](https://pypi.python.org/pypi/pydantic-airflow)
9
+
10
+ ## Overview
11
+ Wrapper for [airflow-pydantic](https://github.com/airflow-laminar/airflow-pydantic).
12
+
13
+
14
+ > [!NOTE]
15
+ > This library was generated using [copier](https://copier.readthedocs.io/en/stable/) from the [Base Python Project Template repository](https://github.com/python-project-templates/base).
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
@@ -0,0 +1,5 @@
1
+ from pydantic_airflow import * # noqa
2
+
3
+
4
+ def test_all():
5
+ assert True
@@ -0,0 +1,116 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend="hatchling.build"
4
+
5
+ [project]
6
+ name = "pydantic-airflow"
7
+ authors = [{name = "the pydantic-airflow authors", email = "t.paine154@gmail.com"}]
8
+ description = "Pydantic models for Apache Airflow"
9
+ readme = "README.md"
10
+ license = { text = "Apache-2.0" }
11
+ version = "0.1.0"
12
+ requires-python = ">=3.9"
13
+ keywords = []
14
+
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Programming Language :: Python",
18
+ "Programming Language :: Python :: Implementation :: CPython",
19
+ "Programming Language :: Python :: Implementation :: PyPy",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ ]
26
+
27
+ dependencies = []
28
+
29
+ [project.optional-dependencies]
30
+ develop = [
31
+ "build",
32
+ "bump-my-version",
33
+ "check-manifest",
34
+ "hatchling",
35
+ "pytest",
36
+ "pytest-cov",
37
+ "ruff",
38
+ "twine",
39
+ "wheel",
40
+ ]
41
+
42
+ [project.scripts]
43
+
44
+ [project.urls]
45
+ Repository = "https://github.com/airflow-laminar/pydantic-airflow"
46
+ Homepage = "https://github.com/airflow-laminar/pydantic-airflow"
47
+
48
+ [tool.bumpversion]
49
+ current_version = "0.1.0"
50
+ commit = true
51
+ tag = true
52
+
53
+ [[tool.bumpversion.files]]
54
+ filename = "pydantic_airflow/__init__.py"
55
+ search = '__version__ = "{current_version}"'
56
+ replace = '__version__ = "{new_version}"'
57
+
58
+ [[tool.bumpversion.files]]
59
+ filename = "pyproject.toml"
60
+ search = 'version = "{current_version}"'
61
+ replace = 'version = "{new_version}"'
62
+
63
+ [tool.check-manifest]
64
+ ignore = [
65
+ ".copier-answers.yml",
66
+ "Makefile",
67
+ "docs/**/*",
68
+ ]
69
+
70
+ [tool.coverage.run]
71
+ branch = true
72
+ omit = [
73
+ "pydantic_airflow/tests/integration/",
74
+ ]
75
+ [tool.coverage.report]
76
+ exclude_also = [
77
+ "raise NotImplementedError",
78
+ "if __name__ == .__main__.:",
79
+ "@(abc\\.)?abstractmethod",
80
+ ]
81
+ ignore_errors = true
82
+ fail_under = 50
83
+
84
+ [tool.hatch.build]
85
+ artifacts = []
86
+
87
+ [tool.hatch.build.sources]
88
+ src = "/"
89
+
90
+ [tool.hatch.build.targets.sdist]
91
+ packages = ["pydantic_airflow"]
92
+
93
+ [tool.hatch.build.targets.wheel]
94
+ packages = ["pydantic_airflow"]
95
+
96
+ [tool.hatch.build.targets.wheel.shared-data]
97
+
98
+ [tool.pytest.ini_options]
99
+ addopts = ["-vvv", "--junitxml=junit.xml"]
100
+ asyncio_mode = "strict"
101
+ testpaths = "pydantic_airflow/tests"
102
+
103
+ [tool.ruff]
104
+ line-length = 150
105
+
106
+ [tool.ruff.lint]
107
+ extend-select = ["I"]
108
+
109
+ [tool.ruff.lint.isort]
110
+ combine-as-imports = true
111
+ default-section = "third-party"
112
+ known-first-party = ["pydantic_airflow"]
113
+ section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
114
+
115
+ [tool.ruff.lint.per-file-ignores]
116
+ "__init__.py" = ["F401"]
@@ -1,225 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pydantic-airflow
3
- Version: 0.0.0
4
- Summary: pydantic-airflow
5
- Author-email: Tim Paine <t.paine154@gmail.com>
6
- License: Apache License
7
- Version 2.0, January 2004
8
- http://www.apache.org/licenses/
9
-
10
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
-
12
- 1. Definitions.
13
-
14
- "License" shall mean the terms and conditions for use, reproduction,
15
- and distribution as defined by Sections 1 through 9 of this document.
16
-
17
- "Licensor" shall mean the copyright owner or entity authorized by
18
- the copyright owner that is granting the License.
19
-
20
- "Legal Entity" shall mean the union of the acting entity and all
21
- other entities that control, are controlled by, or are under common
22
- control with that entity. For the purposes of this definition,
23
- "control" means (i) the power, direct or indirect, to cause the
24
- direction or management of such entity, whether by contract or
25
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
26
- outstanding shares, or (iii) beneficial ownership of such entity.
27
-
28
- "You" (or "Your") shall mean an individual or Legal Entity
29
- exercising permissions granted by this License.
30
-
31
- "Source" form shall mean the preferred form for making modifications,
32
- including but not limited to software source code, documentation
33
- source, and configuration files.
34
-
35
- "Object" form shall mean any form resulting from mechanical
36
- transformation or translation of a Source form, including but
37
- not limited to compiled object code, generated documentation,
38
- and conversions to other media types.
39
-
40
- "Work" shall mean the work of authorship, whether in Source or
41
- Object form, made available under the License, as indicated by a
42
- copyright notice that is included in or attached to the work
43
- (an example is provided in the Appendix below).
44
-
45
- "Derivative Works" shall mean any work, whether in Source or Object
46
- form, that is based on (or derived from) the Work and for which the
47
- editorial revisions, annotations, elaborations, or other modifications
48
- represent, as a whole, an original work of authorship. For the purposes
49
- of this License, Derivative Works shall not include works that remain
50
- separable from, or merely link (or bind by name) to the interfaces of,
51
- the Work and Derivative Works thereof.
52
-
53
- "Contribution" shall mean any work of authorship, including
54
- the original version of the Work and any modifications or additions
55
- to that Work or Derivative Works thereof, that is intentionally
56
- submitted to Licensor for inclusion in the Work by the copyright owner
57
- or by an individual or Legal Entity authorized to submit on behalf of
58
- the copyright owner. For the purposes of this definition, "submitted"
59
- means any form of electronic, verbal, or written communication sent
60
- to the Licensor or its representatives, including but not limited to
61
- communication on electronic mailing lists, source code control systems,
62
- and issue tracking systems that are managed by, or on behalf of, the
63
- Licensor for the purpose of discussing and improving the Work, but
64
- excluding communication that is conspicuously marked or otherwise
65
- designated in writing by the copyright owner as "Not a Contribution."
66
-
67
- "Contributor" shall mean Licensor and any individual or Legal Entity
68
- on behalf of whom a Contribution has been received by Licensor and
69
- subsequently incorporated within the Work.
70
-
71
- 2. Grant of Copyright License. Subject to the terms and conditions of
72
- this License, each Contributor hereby grants to You a perpetual,
73
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
74
- copyright license to reproduce, prepare Derivative Works of,
75
- publicly display, publicly perform, sublicense, and distribute the
76
- Work and such Derivative Works in Source or Object form.
77
-
78
- 3. Grant of Patent License. Subject to the terms and conditions of
79
- this License, each Contributor hereby grants to You a perpetual,
80
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
81
- (except as stated in this section) patent license to make, have made,
82
- use, offer to sell, sell, import, and otherwise transfer the Work,
83
- where such license applies only to those patent claims licensable
84
- by such Contributor that are necessarily infringed by their
85
- Contribution(s) alone or by combination of their Contribution(s)
86
- with the Work to which such Contribution(s) was submitted. If You
87
- institute patent litigation against any entity (including a
88
- cross-claim or counterclaim in a lawsuit) alleging that the Work
89
- or a Contribution incorporated within the Work constitutes direct
90
- or contributory patent infringement, then any patent licenses
91
- granted to You under this License for that Work shall terminate
92
- as of the date such litigation is filed.
93
-
94
- 4. Redistribution. You may reproduce and distribute copies of the
95
- Work or Derivative Works thereof in any medium, with or without
96
- modifications, and in Source or Object form, provided that You
97
- meet the following conditions:
98
-
99
- (a) You must give any other recipients of the Work or
100
- Derivative Works a copy of this License; and
101
-
102
- (b) You must cause any modified files to carry prominent notices
103
- stating that You changed the files; and
104
-
105
- (c) You must retain, in the Source form of any Derivative Works
106
- that You distribute, all copyright, patent, trademark, and
107
- attribution notices from the Source form of the Work,
108
- excluding those notices that do not pertain to any part of
109
- the Derivative Works; and
110
-
111
- (d) If the Work includes a "NOTICE" text file as part of its
112
- distribution, then any Derivative Works that You distribute must
113
- include a readable copy of the attribution notices contained
114
- within such NOTICE file, excluding those notices that do not
115
- pertain to any part of the Derivative Works, in at least one
116
- of the following places: within a NOTICE text file distributed
117
- as part of the Derivative Works; within the Source form or
118
- documentation, if provided along with the Derivative Works; or,
119
- within a display generated by the Derivative Works, if and
120
- wherever such third-party notices normally appear. The contents
121
- of the NOTICE file are for informational purposes only and
122
- do not modify the License. You may add Your own attribution
123
- notices within Derivative Works that You distribute, alongside
124
- or as an addendum to the NOTICE text from the Work, provided
125
- that such additional attribution notices cannot be construed
126
- as modifying the License.
127
-
128
- You may add Your own copyright statement to Your modifications and
129
- may provide additional or different license terms and conditions
130
- for use, reproduction, or distribution of Your modifications, or
131
- for any such Derivative Works as a whole, provided Your use,
132
- reproduction, and distribution of the Work otherwise complies with
133
- the conditions stated in this License.
134
-
135
- 5. Submission of Contributions. Unless You explicitly state otherwise,
136
- any Contribution intentionally submitted for inclusion in the Work
137
- by You to the Licensor shall be under the terms and conditions of
138
- this License, without any additional terms or conditions.
139
- Notwithstanding the above, nothing herein shall supersede or modify
140
- the terms of any separate license agreement you may have executed
141
- with Licensor regarding such Contributions.
142
-
143
- 6. Trademarks. This License does not grant permission to use the trade
144
- names, trademarks, service marks, or product names of the Licensor,
145
- except as required for reasonable and customary use in describing the
146
- origin of the Work and reproducing the content of the NOTICE file.
147
-
148
- 7. Disclaimer of Warranty. Unless required by applicable law or
149
- agreed to in writing, Licensor provides the Work (and each
150
- Contributor provides its Contributions) on an "AS IS" BASIS,
151
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152
- implied, including, without limitation, any warranties or conditions
153
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
154
- PARTICULAR PURPOSE. You are solely responsible for determining the
155
- appropriateness of using or redistributing the Work and assume any
156
- risks associated with Your exercise of permissions under this License.
157
-
158
- 8. Limitation of Liability. In no event and under no legal theory,
159
- whether in tort (including negligence), contract, or otherwise,
160
- unless required by applicable law (such as deliberate and grossly
161
- negligent acts) or agreed to in writing, shall any Contributor be
162
- liable to You for damages, including any direct, indirect, special,
163
- incidental, or consequential damages of any character arising as a
164
- result of this License or out of the use or inability to use the
165
- Work (including but not limited to damages for loss of goodwill,
166
- work stoppage, computer failure or malfunction, or any and all
167
- other commercial damages or losses), even if such Contributor
168
- has been advised of the possibility of such damages.
169
-
170
- 9. Accepting Warranty or Additional Liability. While redistributing
171
- the Work or Derivative Works thereof, You may choose to offer,
172
- and charge a fee for, acceptance of support, warranty, indemnity,
173
- or other liability obligations and/or rights consistent with this
174
- License. However, in accepting such obligations, You may act only
175
- on Your own behalf and on Your sole responsibility, not on behalf
176
- of any other Contributor, and only if You agree to indemnify,
177
- defend, and hold each Contributor harmless for any liability
178
- incurred by, or claims asserted against, such Contributor by reason
179
- of your accepting any such warranty or additional liability.
180
-
181
- END OF TERMS AND CONDITIONS
182
-
183
- APPENDIX: How to apply the Apache License to your work.
184
-
185
- To apply the Apache License to your work, attach the following
186
- boilerplate notice, with the fields enclosed by brackets "[]"
187
- replaced with your own identifying information. (Don't include
188
- the brackets!) The text should be enclosed in the appropriate
189
- comment syntax for the file format. We also recommend that a
190
- file or class name and description of purpose be included on the
191
- same "printed page" as the copyright notice for easier
192
- identification within third-party archives.
193
-
194
- Copyright 2024, the pydantic-airflow authors
195
-
196
- Licensed under the Apache License, Version 2.0 (the "License");
197
- you may not use this file except in compliance with the License.
198
- You may obtain a copy of the License at
199
-
200
- http://www.apache.org/licenses/LICENSE-2.0
201
-
202
- Unless required by applicable law or agreed to in writing, software
203
- distributed under the License is distributed on an "AS IS" BASIS,
204
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205
- See the License for the specific language governing permissions and
206
- limitations under the License.
207
-
208
- Project-URL: Repository, https://github.com/timkpaine/pydantic-airflow
209
- Project-URL: Homepage, https://github.com/timkpaine/pydantic-airflow
210
- Project-URL: Documentation, https://github.com/timkpaine/pydantic-airflow/wiki
211
- Project-URL: Tracker, https://github.com/timkpaine/pydantic-airflow/issues
212
- Classifier: Development Status :: 4 - Beta
213
- Classifier: Programming Language :: Python
214
- Classifier: Programming Language :: Python :: 3
215
- Classifier: Programming Language :: Python :: 3.8
216
- Classifier: Programming Language :: Python :: 3.9
217
- Classifier: Programming Language :: Python :: 3.10
218
- Classifier: Programming Language :: Python :: 3.11
219
- Classifier: Programming Language :: Python :: 3.12
220
- Requires-Python: >=3.8
221
- Description-Content-Type: text/markdown
222
- License-File: LICENSE
223
- Requires-Dist: airflow-pydantic
224
-
225
- # pydantic-airflow
@@ -1 +0,0 @@
1
- # pydantic-airflow
@@ -1,225 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pydantic-airflow
3
- Version: 0.0.0
4
- Summary: pydantic-airflow
5
- Author-email: Tim Paine <t.paine154@gmail.com>
6
- License: Apache License
7
- Version 2.0, January 2004
8
- http://www.apache.org/licenses/
9
-
10
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
-
12
- 1. Definitions.
13
-
14
- "License" shall mean the terms and conditions for use, reproduction,
15
- and distribution as defined by Sections 1 through 9 of this document.
16
-
17
- "Licensor" shall mean the copyright owner or entity authorized by
18
- the copyright owner that is granting the License.
19
-
20
- "Legal Entity" shall mean the union of the acting entity and all
21
- other entities that control, are controlled by, or are under common
22
- control with that entity. For the purposes of this definition,
23
- "control" means (i) the power, direct or indirect, to cause the
24
- direction or management of such entity, whether by contract or
25
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
26
- outstanding shares, or (iii) beneficial ownership of such entity.
27
-
28
- "You" (or "Your") shall mean an individual or Legal Entity
29
- exercising permissions granted by this License.
30
-
31
- "Source" form shall mean the preferred form for making modifications,
32
- including but not limited to software source code, documentation
33
- source, and configuration files.
34
-
35
- "Object" form shall mean any form resulting from mechanical
36
- transformation or translation of a Source form, including but
37
- not limited to compiled object code, generated documentation,
38
- and conversions to other media types.
39
-
40
- "Work" shall mean the work of authorship, whether in Source or
41
- Object form, made available under the License, as indicated by a
42
- copyright notice that is included in or attached to the work
43
- (an example is provided in the Appendix below).
44
-
45
- "Derivative Works" shall mean any work, whether in Source or Object
46
- form, that is based on (or derived from) the Work and for which the
47
- editorial revisions, annotations, elaborations, or other modifications
48
- represent, as a whole, an original work of authorship. For the purposes
49
- of this License, Derivative Works shall not include works that remain
50
- separable from, or merely link (or bind by name) to the interfaces of,
51
- the Work and Derivative Works thereof.
52
-
53
- "Contribution" shall mean any work of authorship, including
54
- the original version of the Work and any modifications or additions
55
- to that Work or Derivative Works thereof, that is intentionally
56
- submitted to Licensor for inclusion in the Work by the copyright owner
57
- or by an individual or Legal Entity authorized to submit on behalf of
58
- the copyright owner. For the purposes of this definition, "submitted"
59
- means any form of electronic, verbal, or written communication sent
60
- to the Licensor or its representatives, including but not limited to
61
- communication on electronic mailing lists, source code control systems,
62
- and issue tracking systems that are managed by, or on behalf of, the
63
- Licensor for the purpose of discussing and improving the Work, but
64
- excluding communication that is conspicuously marked or otherwise
65
- designated in writing by the copyright owner as "Not a Contribution."
66
-
67
- "Contributor" shall mean Licensor and any individual or Legal Entity
68
- on behalf of whom a Contribution has been received by Licensor and
69
- subsequently incorporated within the Work.
70
-
71
- 2. Grant of Copyright License. Subject to the terms and conditions of
72
- this License, each Contributor hereby grants to You a perpetual,
73
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
74
- copyright license to reproduce, prepare Derivative Works of,
75
- publicly display, publicly perform, sublicense, and distribute the
76
- Work and such Derivative Works in Source or Object form.
77
-
78
- 3. Grant of Patent License. Subject to the terms and conditions of
79
- this License, each Contributor hereby grants to You a perpetual,
80
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
81
- (except as stated in this section) patent license to make, have made,
82
- use, offer to sell, sell, import, and otherwise transfer the Work,
83
- where such license applies only to those patent claims licensable
84
- by such Contributor that are necessarily infringed by their
85
- Contribution(s) alone or by combination of their Contribution(s)
86
- with the Work to which such Contribution(s) was submitted. If You
87
- institute patent litigation against any entity (including a
88
- cross-claim or counterclaim in a lawsuit) alleging that the Work
89
- or a Contribution incorporated within the Work constitutes direct
90
- or contributory patent infringement, then any patent licenses
91
- granted to You under this License for that Work shall terminate
92
- as of the date such litigation is filed.
93
-
94
- 4. Redistribution. You may reproduce and distribute copies of the
95
- Work or Derivative Works thereof in any medium, with or without
96
- modifications, and in Source or Object form, provided that You
97
- meet the following conditions:
98
-
99
- (a) You must give any other recipients of the Work or
100
- Derivative Works a copy of this License; and
101
-
102
- (b) You must cause any modified files to carry prominent notices
103
- stating that You changed the files; and
104
-
105
- (c) You must retain, in the Source form of any Derivative Works
106
- that You distribute, all copyright, patent, trademark, and
107
- attribution notices from the Source form of the Work,
108
- excluding those notices that do not pertain to any part of
109
- the Derivative Works; and
110
-
111
- (d) If the Work includes a "NOTICE" text file as part of its
112
- distribution, then any Derivative Works that You distribute must
113
- include a readable copy of the attribution notices contained
114
- within such NOTICE file, excluding those notices that do not
115
- pertain to any part of the Derivative Works, in at least one
116
- of the following places: within a NOTICE text file distributed
117
- as part of the Derivative Works; within the Source form or
118
- documentation, if provided along with the Derivative Works; or,
119
- within a display generated by the Derivative Works, if and
120
- wherever such third-party notices normally appear. The contents
121
- of the NOTICE file are for informational purposes only and
122
- do not modify the License. You may add Your own attribution
123
- notices within Derivative Works that You distribute, alongside
124
- or as an addendum to the NOTICE text from the Work, provided
125
- that such additional attribution notices cannot be construed
126
- as modifying the License.
127
-
128
- You may add Your own copyright statement to Your modifications and
129
- may provide additional or different license terms and conditions
130
- for use, reproduction, or distribution of Your modifications, or
131
- for any such Derivative Works as a whole, provided Your use,
132
- reproduction, and distribution of the Work otherwise complies with
133
- the conditions stated in this License.
134
-
135
- 5. Submission of Contributions. Unless You explicitly state otherwise,
136
- any Contribution intentionally submitted for inclusion in the Work
137
- by You to the Licensor shall be under the terms and conditions of
138
- this License, without any additional terms or conditions.
139
- Notwithstanding the above, nothing herein shall supersede or modify
140
- the terms of any separate license agreement you may have executed
141
- with Licensor regarding such Contributions.
142
-
143
- 6. Trademarks. This License does not grant permission to use the trade
144
- names, trademarks, service marks, or product names of the Licensor,
145
- except as required for reasonable and customary use in describing the
146
- origin of the Work and reproducing the content of the NOTICE file.
147
-
148
- 7. Disclaimer of Warranty. Unless required by applicable law or
149
- agreed to in writing, Licensor provides the Work (and each
150
- Contributor provides its Contributions) on an "AS IS" BASIS,
151
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152
- implied, including, without limitation, any warranties or conditions
153
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
154
- PARTICULAR PURPOSE. You are solely responsible for determining the
155
- appropriateness of using or redistributing the Work and assume any
156
- risks associated with Your exercise of permissions under this License.
157
-
158
- 8. Limitation of Liability. In no event and under no legal theory,
159
- whether in tort (including negligence), contract, or otherwise,
160
- unless required by applicable law (such as deliberate and grossly
161
- negligent acts) or agreed to in writing, shall any Contributor be
162
- liable to You for damages, including any direct, indirect, special,
163
- incidental, or consequential damages of any character arising as a
164
- result of this License or out of the use or inability to use the
165
- Work (including but not limited to damages for loss of goodwill,
166
- work stoppage, computer failure or malfunction, or any and all
167
- other commercial damages or losses), even if such Contributor
168
- has been advised of the possibility of such damages.
169
-
170
- 9. Accepting Warranty or Additional Liability. While redistributing
171
- the Work or Derivative Works thereof, You may choose to offer,
172
- and charge a fee for, acceptance of support, warranty, indemnity,
173
- or other liability obligations and/or rights consistent with this
174
- License. However, in accepting such obligations, You may act only
175
- on Your own behalf and on Your sole responsibility, not on behalf
176
- of any other Contributor, and only if You agree to indemnify,
177
- defend, and hold each Contributor harmless for any liability
178
- incurred by, or claims asserted against, such Contributor by reason
179
- of your accepting any such warranty or additional liability.
180
-
181
- END OF TERMS AND CONDITIONS
182
-
183
- APPENDIX: How to apply the Apache License to your work.
184
-
185
- To apply the Apache License to your work, attach the following
186
- boilerplate notice, with the fields enclosed by brackets "[]"
187
- replaced with your own identifying information. (Don't include
188
- the brackets!) The text should be enclosed in the appropriate
189
- comment syntax for the file format. We also recommend that a
190
- file or class name and description of purpose be included on the
191
- same "printed page" as the copyright notice for easier
192
- identification within third-party archives.
193
-
194
- Copyright 2024, the pydantic-airflow authors
195
-
196
- Licensed under the Apache License, Version 2.0 (the "License");
197
- you may not use this file except in compliance with the License.
198
- You may obtain a copy of the License at
199
-
200
- http://www.apache.org/licenses/LICENSE-2.0
201
-
202
- Unless required by applicable law or agreed to in writing, software
203
- distributed under the License is distributed on an "AS IS" BASIS,
204
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205
- See the License for the specific language governing permissions and
206
- limitations under the License.
207
-
208
- Project-URL: Repository, https://github.com/timkpaine/pydantic-airflow
209
- Project-URL: Homepage, https://github.com/timkpaine/pydantic-airflow
210
- Project-URL: Documentation, https://github.com/timkpaine/pydantic-airflow/wiki
211
- Project-URL: Tracker, https://github.com/timkpaine/pydantic-airflow/issues
212
- Classifier: Development Status :: 4 - Beta
213
- Classifier: Programming Language :: Python
214
- Classifier: Programming Language :: Python :: 3
215
- Classifier: Programming Language :: Python :: 3.8
216
- Classifier: Programming Language :: Python :: 3.9
217
- Classifier: Programming Language :: Python :: 3.10
218
- Classifier: Programming Language :: Python :: 3.11
219
- Classifier: Programming Language :: Python :: 3.12
220
- Requires-Python: >=3.8
221
- Description-Content-Type: text/markdown
222
- License-File: LICENSE
223
- Requires-Dist: airflow-pydantic
224
-
225
- # pydantic-airflow
@@ -1,9 +0,0 @@
1
- LICENSE
2
- README.md
3
- pyproject.toml
4
- setup.py
5
- pydantic_airflow.egg-info/PKG-INFO
6
- pydantic_airflow.egg-info/SOURCES.txt
7
- pydantic_airflow.egg-info/dependency_links.txt
8
- pydantic_airflow.egg-info/requires.txt
9
- pydantic_airflow.egg-info/top_level.txt
@@ -1 +0,0 @@
1
- airflow-pydantic
@@ -1,29 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "pydantic-airflow"
7
- description = "pydantic-airflow"
8
- version = "0.0.0"
9
- readme = "README.md"
10
- license = { file = "LICENSE" }
11
- requires-python = ">=3.8"
12
- authors = [{name = "Tim Paine", email = "t.paine154@gmail.com"}]
13
- classifiers = [
14
- "Development Status :: 4 - Beta",
15
- "Programming Language :: Python",
16
- "Programming Language :: Python :: 3",
17
- "Programming Language :: Python :: 3.8",
18
- "Programming Language :: Python :: 3.9",
19
- "Programming Language :: Python :: 3.10",
20
- "Programming Language :: Python :: 3.11",
21
- "Programming Language :: Python :: 3.12",
22
- ]
23
- dependencies = ["airflow-pydantic"]
24
-
25
- [project.urls]
26
- Repository = "https://github.com/timkpaine/pydantic-airflow"
27
- Homepage = "https://github.com/timkpaine/pydantic-airflow"
28
- Documentation = "https://github.com/timkpaine/pydantic-airflow/wiki"
29
- Tracker = "https://github.com/timkpaine/pydantic-airflow/issues"
@@ -1,4 +0,0 @@
1
- [egg_info]
2
- tag_build =
3
- tag_date = 0
4
-
@@ -1 +0,0 @@
1
- __import__("setuptools").setup()