beamflow 0.3.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.
beamflow-0.3.0/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: beamflow
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: Convenience meta-package for the Beamflow managed platform.
|
|
5
|
+
Author: juraj.bezdek@gmail.com
|
|
6
|
+
Author-email: juraj.bezdek@gmail.com
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Requires-Dist: beamflow-cli (>=0.3.0,<0.4.0)
|
|
13
|
+
Requires-Dist: beamflow-runtime (>=0.3.0,<0.4.0)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "beamflow"
|
|
3
|
+
version = "0.3.0"
|
|
4
|
+
description = "Convenience meta-package for the Beamflow managed platform."
|
|
5
|
+
authors = [{name = "juraj.bezdek@gmail.com", email = "juraj.bezdek@gmail.com"}]
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
dependencies = [
|
|
8
|
+
"beamflow-cli>=0.3.0,<0.4.0",
|
|
9
|
+
"beamflow-runtime>=0.3.0,<0.4.0"
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["poetry-core>=2.0.0"]
|
|
14
|
+
build-backend = "poetry.core.masonry.api"
|
|
15
|
+
|
|
16
|
+
[tool.poetry]
|
|
17
|
+
packages = [
|
|
18
|
+
{ include = "beamflow_meta", from = "src" }
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[tool.poetry.dependencies]
|
|
22
|
+
beamflow-cli = { path = "../beamflow-cli", develop = true }
|
|
23
|
+
beamflow-runtime = { path = "../beamflow_runtime", develop = true }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Empty init file for the beamflow meta package
|