flink-agents 0.1.dev0__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.
- flink_agents-0.1.dev0/PKG-INFO +17 -0
- flink_agents-0.1.dev0/README.md +1 -0
- flink_agents-0.1.dev0/flink_agents/__init__.py +18 -0
- flink_agents-0.1.dev0/flink_agents/api/__init__.py +17 -0
- flink_agents-0.1.dev0/flink_agents/examples/__init__.py +17 -0
- flink_agents-0.1.dev0/flink_agents/plan/__init__.py +17 -0
- flink_agents-0.1.dev0/flink_agents/runtime/__init__.py +17 -0
- flink_agents-0.1.dev0/flink_agents.egg-info/PKG-INFO +17 -0
- flink_agents-0.1.dev0/flink_agents.egg-info/SOURCES.txt +13 -0
- flink_agents-0.1.dev0/flink_agents.egg-info/dependency_links.txt +1 -0
- flink_agents-0.1.dev0/flink_agents.egg-info/requires.txt +1 -0
- flink_agents-0.1.dev0/flink_agents.egg-info/top_level.txt +1 -0
- flink_agents-0.1.dev0/pyproject.toml +134 -0
- flink_agents-0.1.dev0/setup.cfg +4 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flink-agents
|
|
3
|
+
Version: 0.1.dev0
|
|
4
|
+
Summary: Flink Agents Python API
|
|
5
|
+
Author-email: Apache Software Foundation <dev@flink.apache.org>
|
|
6
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: apache-flink==1.20.1
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
|
|
17
|
+
../README.md
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
../README.md
|
|
@@ -0,0 +1,18 @@
|
|
|
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, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#################################################################################
|
|
18
|
+
__path__ = __import__("pkgutil").extend_path(__path__, __name__) # type: ignore
|
|
@@ -0,0 +1,17 @@
|
|
|
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, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#################################################################################
|
|
@@ -0,0 +1,17 @@
|
|
|
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, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#################################################################################
|
|
@@ -0,0 +1,17 @@
|
|
|
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, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#################################################################################
|
|
@@ -0,0 +1,17 @@
|
|
|
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, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#################################################################################
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flink-agents
|
|
3
|
+
Version: 0.1.dev0
|
|
4
|
+
Summary: Flink Agents Python API
|
|
5
|
+
Author-email: Apache Software Foundation <dev@flink.apache.org>
|
|
6
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: apache-flink==1.20.1
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
|
|
17
|
+
../README.md
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
../LICENSE
|
|
4
|
+
flink_agents/__init__.py
|
|
5
|
+
flink_agents.egg-info/PKG-INFO
|
|
6
|
+
flink_agents.egg-info/SOURCES.txt
|
|
7
|
+
flink_agents.egg-info/dependency_links.txt
|
|
8
|
+
flink_agents.egg-info/requires.txt
|
|
9
|
+
flink_agents.egg-info/top_level.txt
|
|
10
|
+
flink_agents/api/__init__.py
|
|
11
|
+
flink_agents/examples/__init__.py
|
|
12
|
+
flink_agents/plan/__init__.py
|
|
13
|
+
flink_agents/runtime/__init__.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
apache-flink==1.20.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
flink_agents
|
|
@@ -0,0 +1,134 @@
|
|
|
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, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
################################################################################
|
|
18
|
+
[build-system]
|
|
19
|
+
# Minimum requirements for the build system to execute.
|
|
20
|
+
requires = [
|
|
21
|
+
"setuptools>=75.3",
|
|
22
|
+
"wheel",
|
|
23
|
+
]
|
|
24
|
+
build-backend = "setuptools.build_meta"
|
|
25
|
+
|
|
26
|
+
[project]
|
|
27
|
+
name = "flink-agents"
|
|
28
|
+
version = "0.1.dev0"
|
|
29
|
+
|
|
30
|
+
description = "Flink Agents Python API"
|
|
31
|
+
license-files = ["../LICENSE"]
|
|
32
|
+
requires-python = ">=3.9"
|
|
33
|
+
authors = [
|
|
34
|
+
{ name = "Apache Software Foundation", email = "dev@flink.apache.org" },
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
readme = "README.md"
|
|
38
|
+
classifiers = [
|
|
39
|
+
'Development Status :: 5 - Production/Stable',
|
|
40
|
+
'Programming Language :: Python :: 3.9',
|
|
41
|
+
'Programming Language :: Python :: 3.10',
|
|
42
|
+
'Programming Language :: Python :: 3.11',
|
|
43
|
+
'Programming Language :: Python :: 3.12',
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
dependencies = [
|
|
47
|
+
"apache-flink==1.20.1",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[tool.cibuildwheel]
|
|
51
|
+
build = ["cp39-*", "cp310-*", "cp311-*", "cp312-*"]
|
|
52
|
+
|
|
53
|
+
[tool.cibuildwheel.macos]
|
|
54
|
+
archs = ["x86_64", "arm64"]
|
|
55
|
+
|
|
56
|
+
[tool.cibuildwheel.linux]
|
|
57
|
+
archs = ["x86_64"]
|
|
58
|
+
|
|
59
|
+
[tool.ruff]
|
|
60
|
+
line-length = 88
|
|
61
|
+
fix = true
|
|
62
|
+
|
|
63
|
+
[tool.ruff.lint]
|
|
64
|
+
select = [
|
|
65
|
+
"ANN", # flake8-annotations
|
|
66
|
+
"B", # flake8-bugbear
|
|
67
|
+
"C4", # flake8-comprehensions
|
|
68
|
+
"D", # flake8-docstrings
|
|
69
|
+
"E", # pycodestyle
|
|
70
|
+
"EM", # flake8-errmsg
|
|
71
|
+
"F", # pyflakes
|
|
72
|
+
"FA", # flake8-future-annotations
|
|
73
|
+
"FBT001", # flake8-boolean-trap
|
|
74
|
+
"I", # isort
|
|
75
|
+
"ICN", # flake8-import-conventions
|
|
76
|
+
"INT", # flake8-gettext
|
|
77
|
+
"PERF", # perflint
|
|
78
|
+
"PIE", # flake8-pie
|
|
79
|
+
"PT", # flake8-pytest-style
|
|
80
|
+
"PTH", # flake8-use-pathlib
|
|
81
|
+
"PYI", # flake8-pyi
|
|
82
|
+
"RUF", # ruff-specific rules
|
|
83
|
+
"SIM", # flake8-simplify
|
|
84
|
+
"TCH", # flake8-type-checking
|
|
85
|
+
"TD", # flake8-todos
|
|
86
|
+
"TID", # flake8-tidy-imports
|
|
87
|
+
"TRY", # tryceratops
|
|
88
|
+
"UP", # pyupgrade
|
|
89
|
+
"W", # pycodestyle
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
ignore = [
|
|
93
|
+
"D100", # Missing docstring in public module
|
|
94
|
+
"D104", # Missing docstring in public package
|
|
95
|
+
"D105", # Missing docstring in magic method
|
|
96
|
+
"D205", # Missing-blank-line-after-summary
|
|
97
|
+
# ------------------------------------------------------------------
|
|
98
|
+
"ANN401", # Dynamically typed expressions (Any) are disallowed
|
|
99
|
+
"D401", # Relax NumPy docstring convention: first line should be imperative
|
|
100
|
+
"E501", # Line length regulated by formatter
|
|
101
|
+
"FA100", # Future-rewritable-type-annotation, unsafe for Pydantic
|
|
102
|
+
"PT011", # pytest.raises is too broad, set match or use a more specific exception
|
|
103
|
+
"PYI041", # Use float instead of int | float
|
|
104
|
+
"RUF022", # `__all__` is not sorted
|
|
105
|
+
"RUF005", # Consider expression instead of concatenation
|
|
106
|
+
"SIM102", # Use a single `if` statement instead of nested `if` statements
|
|
107
|
+
"SIM108", # Use ternary operator
|
|
108
|
+
"SIM114", # Combine `if` branches
|
|
109
|
+
"TD002", # Missing author in TODO
|
|
110
|
+
"TD003", # Missing issue link on the line following this TODO
|
|
111
|
+
"TID252", # Prefer absolute imports over relative imports
|
|
112
|
+
"TRY003", # Avoid specifying long messages outside the exception class
|
|
113
|
+
"UP006", # Non-pep585-annotation, unsafe for Pydantic
|
|
114
|
+
"UP035", # Deprecated-import, unsafe for Pydantic
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[tool.ruff.lint.per-file-ignores]
|
|
118
|
+
"dependencies.py" = ["ICN001"]
|
|
119
|
+
"tests/**/*.py" = ["ANN001", "ANN201", "D100", "D102", "D103", "B018", "FBT001"]
|
|
120
|
+
|
|
121
|
+
[tool.ruff.lint.pycodestyle]
|
|
122
|
+
max-doc-length = 88
|
|
123
|
+
|
|
124
|
+
[tool.ruff.lint.pydocstyle]
|
|
125
|
+
convention = "google"
|
|
126
|
+
|
|
127
|
+
[tool.ruff.lint.flake8-tidy-imports]
|
|
128
|
+
ban-relative-imports = "all"
|
|
129
|
+
|
|
130
|
+
[tool.ruff.lint.flake8-type-checking]
|
|
131
|
+
strict = true
|
|
132
|
+
|
|
133
|
+
[tool.ruff.format]
|
|
134
|
+
docstring-code-format = true
|