procodile 0.1.0__tar.gz → 0.1.2__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.1.0 → procodile-0.1.2}/.gitignore +1 -1
- {procodile-0.1.0 → procodile-0.1.2}/PKG-INFO +4 -4
- {procodile-0.1.0 → procodile-0.1.2}/pyproject.toml +7 -5
- {procodile-0.1.0 → procodile-0.1.2}/LICENSE +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/README.md +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/__init__.py +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/artifacts.py +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/cli/__init__.py +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/cli/cli.py +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/job.py +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/process.py +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/py.typed +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/registry.py +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/reporter.py +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/schema.py +0 -0
- {procodile-0.1.0 → procodile-0.1.2}/procodile/workflow.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: procodile
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
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
|
|
7
7
|
Project-URL: Changelog, https://github.com/eo-tools/eozilla/blob/main/CHANGES.md
|
|
8
8
|
Project-URL: Issues, https://github.com/eo-tools/eozilla/issues
|
|
9
|
-
Author:
|
|
9
|
+
Author-email: b-yogesh <b-yogesh@users.noreply.github.com>, forman <forman@users.noreply.github.com>, pont-us <pont-us@users.noreply.github.com>, TejasMorbagal <TejasMorbagal@users.noreply.github.com>
|
|
10
10
|
License: Apache-2.0
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Keywords: data processing,eo,esa,ogc
|
|
@@ -19,15 +19,15 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
19
19
|
Classifier: Operating System :: POSIX
|
|
20
20
|
Classifier: Operating System :: Unix
|
|
21
21
|
Classifier: Programming Language :: Python :: 3
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
26
26
|
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.1.
|
|
30
|
+
Requires-Dist: gavicore>=0.1.2
|
|
31
31
|
Requires-Dist: pydantic
|
|
32
32
|
Requires-Dist: pyyaml
|
|
33
33
|
Requires-Dist: typer
|
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "procodile"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "A light-weight processor development framework"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
11
|
-
{name = "
|
|
12
|
-
{name = "
|
|
11
|
+
{name = "b-yogesh", email = "b-yogesh@users.noreply.github.com"},
|
|
12
|
+
{name = "forman", email = "forman@users.noreply.github.com"},
|
|
13
|
+
{name = "pont-us", email = "pont-us@users.noreply.github.com"},
|
|
14
|
+
{name = "TejasMorbagal", email = "TejasMorbagal@users.noreply.github.com"},
|
|
13
15
|
]
|
|
14
16
|
keywords = [
|
|
15
17
|
"eo",
|
|
@@ -24,10 +26,10 @@ classifiers = [
|
|
|
24
26
|
"Intended Audience :: Developers",
|
|
25
27
|
"License :: OSI Approved :: Apache Software License",
|
|
26
28
|
"Programming Language :: Python :: 3",
|
|
27
|
-
"Programming Language :: Python :: 3.10",
|
|
28
29
|
"Programming Language :: Python :: 3.11",
|
|
29
30
|
"Programming Language :: Python :: 3.12",
|
|
30
31
|
"Programming Language :: Python :: 3.13",
|
|
32
|
+
"Programming Language :: Python :: 3.14",
|
|
31
33
|
"Topic :: Software Development",
|
|
32
34
|
"Topic :: Scientific/Engineering",
|
|
33
35
|
"Typing :: Typed",
|
|
@@ -42,7 +44,7 @@ dependencies = [
|
|
|
42
44
|
"pyyaml",
|
|
43
45
|
"typer",
|
|
44
46
|
# local dependency
|
|
45
|
-
"gavicore >=0.1.
|
|
47
|
+
"gavicore >=0.1.2",
|
|
46
48
|
]
|
|
47
49
|
|
|
48
50
|
[project.urls]
|
|
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
|
|
File without changes
|
|
File without changes
|