procodile 0.0.5__tar.gz → 0.0.6__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.
- {procodile-0.0.5 → procodile-0.0.6}/PKG-INFO +3 -2
- {procodile-0.0.5 → procodile-0.0.6}/pyproject.toml +71 -72
- {procodile-0.0.5 → procodile-0.0.6}/.gitignore +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/LICENSE +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/README.md +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/procodile/__init__.py +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/procodile/cli/__init__.py +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/procodile/cli/cli.py +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/procodile/job.py +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/procodile/process.py +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/procodile/py.typed +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/procodile/registry.py +0 -0
- {procodile-0.0.5 → procodile-0.0.6}/procodile/reporter.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: procodile
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: A light-weight processor development framework
|
|
5
5
|
Project-URL: Documentation, https://eo-tools.github.io/eozilla
|
|
6
6
|
Project-URL: Repository, https://github.com/eo-tools/eozilla
|
|
@@ -27,8 +27,9 @@ Classifier: Topic :: Scientific/Engineering
|
|
|
27
27
|
Classifier: Topic :: Software Development
|
|
28
28
|
Classifier: Typing :: Typed
|
|
29
29
|
Requires-Python: >=3.10
|
|
30
|
-
Requires-Dist: gavicore>=0.0.
|
|
30
|
+
Requires-Dist: gavicore>=0.0.6
|
|
31
31
|
Requires-Dist: pydantic
|
|
32
|
+
Requires-Dist: pyyaml
|
|
32
33
|
Requires-Dist: typer
|
|
33
34
|
Description-Content-Type: text/markdown
|
|
34
35
|
|
|
@@ -1,72 +1,71 @@
|
|
|
1
|
-
# Copyright (c) 2025 by the Eozilla team and contributors
|
|
2
|
-
# Permissions are hereby granted under the terms of the Apache 2.0 License:
|
|
3
|
-
# https://opensource.org/license/apache-2-0.
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "procodile"
|
|
7
|
-
version = "0.0.
|
|
8
|
-
description = "A light-weight processor development framework"
|
|
9
|
-
readme = "README.md"
|
|
10
|
-
authors = [
|
|
11
|
-
{name = "Norman Fomferra (Brockmann Consult GmbH)"},
|
|
12
|
-
{name = "Tejas Morbagal Harish (Brockmann Consult GmbH)"}
|
|
13
|
-
]
|
|
14
|
-
keywords = [
|
|
15
|
-
"eo",
|
|
16
|
-
"esa",
|
|
17
|
-
"data processing",
|
|
18
|
-
"ogc",
|
|
19
|
-
]
|
|
20
|
-
license = {text = "Apache-2.0"}
|
|
21
|
-
classifiers = [
|
|
22
|
-
"Development Status :: 5 - Production/Stable",
|
|
23
|
-
"Intended Audience :: Science/Research",
|
|
24
|
-
"Intended Audience :: Developers",
|
|
25
|
-
"License :: OSI Approved :: Apache Software License",
|
|
26
|
-
"Programming Language :: Python :: 3",
|
|
27
|
-
"Programming Language :: Python :: 3.10",
|
|
28
|
-
"Programming Language :: Python :: 3.11",
|
|
29
|
-
"Programming Language :: Python :: 3.12",
|
|
30
|
-
"Programming Language :: Python :: 3.13",
|
|
31
|
-
"Topic :: Software Development",
|
|
32
|
-
"Topic :: Scientific/Engineering",
|
|
33
|
-
"Typing :: Typed",
|
|
34
|
-
"Operating System :: Microsoft :: Windows",
|
|
35
|
-
"Operating System :: POSIX",
|
|
36
|
-
"Operating System :: Unix",
|
|
37
|
-
"Operating System :: MacOS",
|
|
38
|
-
]
|
|
39
|
-
requires-python = ">=3.10"
|
|
40
|
-
dependencies = [
|
|
41
|
-
"pydantic",
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
[tool.hatch.build.targets.sdist]
|
|
62
|
-
include = [
|
|
63
|
-
"src/procodile/**/*",
|
|
64
|
-
"pyproject.toml",
|
|
65
|
-
"README.md",
|
|
66
|
-
"LICENSE",
|
|
67
|
-
]
|
|
68
|
-
|
|
69
|
-
[tool.hatch.build.targets.wheel]
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
]
|
|
1
|
+
# Copyright (c) 2025 by the Eozilla team and contributors
|
|
2
|
+
# Permissions are hereby granted under the terms of the Apache 2.0 License:
|
|
3
|
+
# https://opensource.org/license/apache-2-0.
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "procodile"
|
|
7
|
+
version = "0.0.6"
|
|
8
|
+
description = "A light-weight processor development framework"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [
|
|
11
|
+
{name = "Norman Fomferra (Brockmann Consult GmbH)"},
|
|
12
|
+
{name = "Tejas Morbagal Harish (Brockmann Consult GmbH)"}
|
|
13
|
+
]
|
|
14
|
+
keywords = [
|
|
15
|
+
"eo",
|
|
16
|
+
"esa",
|
|
17
|
+
"data processing",
|
|
18
|
+
"ogc",
|
|
19
|
+
]
|
|
20
|
+
license = {text = "Apache-2.0"}
|
|
21
|
+
classifiers = [
|
|
22
|
+
"Development Status :: 5 - Production/Stable",
|
|
23
|
+
"Intended Audience :: Science/Research",
|
|
24
|
+
"Intended Audience :: Developers",
|
|
25
|
+
"License :: OSI Approved :: Apache Software License",
|
|
26
|
+
"Programming Language :: Python :: 3",
|
|
27
|
+
"Programming Language :: Python :: 3.10",
|
|
28
|
+
"Programming Language :: Python :: 3.11",
|
|
29
|
+
"Programming Language :: Python :: 3.12",
|
|
30
|
+
"Programming Language :: Python :: 3.13",
|
|
31
|
+
"Topic :: Software Development",
|
|
32
|
+
"Topic :: Scientific/Engineering",
|
|
33
|
+
"Typing :: Typed",
|
|
34
|
+
"Operating System :: Microsoft :: Windows",
|
|
35
|
+
"Operating System :: POSIX",
|
|
36
|
+
"Operating System :: Unix",
|
|
37
|
+
"Operating System :: MacOS",
|
|
38
|
+
]
|
|
39
|
+
requires-python = ">=3.10"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"pydantic",
|
|
42
|
+
"pyyaml",
|
|
43
|
+
"typer",
|
|
44
|
+
# local dependency
|
|
45
|
+
"gavicore>=0.0.6",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[project.urls]
|
|
49
|
+
Documentation = "https://eo-tools.github.io/eozilla"
|
|
50
|
+
Repository = "https://github.com/eo-tools/eozilla"
|
|
51
|
+
Changelog = "https://github.com/eo-tools/eozilla/blob/main/CHANGES.md"
|
|
52
|
+
Issues = "https://github.com/eo-tools/eozilla/issues"
|
|
53
|
+
|
|
54
|
+
[build-system]
|
|
55
|
+
requires = ["hatch"]
|
|
56
|
+
build-backend = "hatchling.build"
|
|
57
|
+
|
|
58
|
+
[tool.hatch.build]
|
|
59
|
+
sources = ["src"]
|
|
60
|
+
|
|
61
|
+
[tool.hatch.build.targets.sdist]
|
|
62
|
+
include = [
|
|
63
|
+
"src/procodile/**/*",
|
|
64
|
+
"pyproject.toml",
|
|
65
|
+
"README.md",
|
|
66
|
+
"LICENSE",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[tool.hatch.build.targets.wheel]
|
|
70
|
+
# packages = ["procodile"]
|
|
71
|
+
# include = ["src/procodile/**/*"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|