edges 1.0.0__py3-none-any.whl → 1.0.2__py3-none-any.whl
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.
Potentially problematic release.
This version of edges might be problematic. Click here for more details.
- edges/__init__.py +2 -1
- edges/data/GeoPolRisk_elementary flows_2024.json +877 -0
- edges/edgelcia.py +486 -326
- edges/flow_matching.py +114 -60
- edges/georesolver.py +5 -13
- edges/logging_config.py +41 -0
- edges/uncertainty.py +22 -2
- edges/utils.py +57 -7
- {edges-1.0.0.dist-info → edges-1.0.2.dist-info}/METADATA +1 -1
- {edges-1.0.0.dist-info → edges-1.0.2.dist-info}/RECORD +12 -10
- {edges-1.0.0.dist-info → edges-1.0.2.dist-info}/WHEEL +0 -0
- {edges-1.0.0.dist-info → edges-1.0.2.dist-info}/top_level.txt +0 -0
edges/__init__.py
CHANGED
|
@@ -5,8 +5,9 @@ applying characterization factors conditioned by the context of exchanges.
|
|
|
5
5
|
|
|
6
6
|
__all__ = ("EdgeLCIA", "CostLCIA", "get_available_methods")
|
|
7
7
|
|
|
8
|
-
__version__ = "1.0.
|
|
8
|
+
__version__ = "1.0.2"
|
|
9
9
|
|
|
10
|
+
from .logging_config import setup_package_logging
|
|
10
11
|
from .edgelcia import EdgeLCIA
|
|
11
12
|
from .costs import CostLCIA
|
|
12
13
|
from .utils import get_available_methods
|