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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: procodile
3
- Version: 0.0.5
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.4
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.5"
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
- "typer",
43
- # local dependency
44
- "gavicore>=0.0.4",
45
- ]
46
-
47
- [project.urls]
48
- Documentation = "https://eo-tools.github.io/eozilla"
49
- Repository = "https://github.com/eo-tools/eozilla"
50
- Changelog = "https://github.com/eo-tools/eozilla/blob/main/CHANGES.md"
51
- Issues = "https://github.com/eo-tools/eozilla/issues"
52
-
53
- [build-system]
54
- requires = ["hatch"]
55
- build-backend = "hatchling.build"
56
-
57
- [tool.hatch.build]
58
- sources = ["src"]
59
- exclude = ["src/tests/**/*"]
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
- include = [
71
- "src/procodile/**/*"
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