openepd 7.0.1__py3-none-any.whl → 7.1.0__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.
- openepd/__version__.py +1 -1
- openepd/model/lcia.py +17 -0
- openepd/model/specs/range/furnishings.py +15 -15
- openepd/model/specs/singular/furnishings.py +10 -10
- {openepd-7.0.1.dist-info → openepd-7.1.0.dist-info}/METADATA +3 -1
- {openepd-7.0.1.dist-info → openepd-7.1.0.dist-info}/RECORD +8 -8
- {openepd-7.0.1.dist-info → openepd-7.1.0.dist-info}/WHEEL +1 -1
- {openepd-7.0.1.dist-info → openepd-7.1.0.dist-info}/LICENSE +0 -0
    
        openepd/__version__.py
    CHANGED
    
    
    
        openepd/model/lcia.py
    CHANGED
    
    | @@ -365,6 +365,12 @@ class ScopeSetCTUe(ScopeSet): | |
| 365 365 | 
             
                allowed_units: ClassVar[str | tuple[str, ...] | None] = "CTUe"
         | 
| 366 366 |  | 
| 367 367 |  | 
| 368 | 
            +
            class ScopeSetKgSbe(ScopeSet):
         | 
| 369 | 
            +
                """ScopeSet measured in kgSbe."""
         | 
| 370 | 
            +
             | 
| 371 | 
            +
                allowed_units: ClassVar[str | tuple[str, ...] | None] = "kgSbe"
         | 
| 372 | 
            +
             | 
| 373 | 
            +
             | 
| 368 374 | 
             
            class ScopeSetDiseaseIncidence(ScopeSet):
         | 
| 369 375 | 
             
                """ScopeSet measuring disease incidence measured in AnnualPerCapita (cases)."""
         | 
| 370 376 |  | 
| @@ -487,6 +493,17 @@ class ImpactSet(ScopesetByNameBase): | |
| 487 493 | 
             
                    default=None,
         | 
| 488 494 | 
             
                    description="Land use related impacts / Soil quality, in potential soil quality parameters.",
         | 
| 489 495 | 
             
                )
         | 
| 496 | 
            +
                ADP_mineral: ScopeSetKgSbe | None = pydantic.Field(
         | 
| 497 | 
            +
                    alias="ADP-mineral",
         | 
| 498 | 
            +
                    default=None,
         | 
| 499 | 
            +
                    description='Abiotic depletion potential for non-fossil resources. EN15804 calls this "ADP - minerals and metals".',
         | 
| 500 | 
            +
                )
         | 
| 501 | 
            +
             | 
| 502 | 
            +
                ADP_fossil: ScopeSetEnergy | None = pydantic.Field(
         | 
| 503 | 
            +
                    alias="ADP-fossil",
         | 
| 504 | 
            +
                    default=None,
         | 
| 505 | 
            +
                    description="Abiotic depletion potential for fossil resources",
         | 
| 506 | 
            +
                )
         | 
| 490 507 |  | 
| 491 508 | 
             
                model_config = pydantic.ConfigDict(from_attributes=True)
         | 
| 492 509 |  | 
| @@ -19,11 +19,11 @@ __all__ = ( | |
| 19 19 | 
             
                "CountertopsRangeV1",
         | 
| 20 20 | 
             
                "DemountablePartitionsRangeV1",
         | 
| 21 21 | 
             
                "OtherFurnishingsRangeV1",
         | 
| 22 | 
            -
                " | 
| 23 | 
            -
                " | 
| 24 | 
            -
                " | 
| 25 | 
            -
                " | 
| 26 | 
            -
                " | 
| 22 | 
            +
                "OpenStorageFurnitureRangeV1",
         | 
| 23 | 
            +
                "ClosedStorageFurnitureRangeV1",
         | 
| 24 | 
            +
                "RetractableStorageFurnitureRangeV1",
         | 
| 25 | 
            +
                "MobileStorageFurnitureRangeV1",
         | 
| 26 | 
            +
                "WallMountedStorageShelvingRangeV1",
         | 
| 27 27 | 
             
                "OtherStorageFurnitureRangeV1",
         | 
| 28 28 | 
             
                "StorageFurnitureRangeV1",
         | 
| 29 29 | 
             
                "TablesRangeV1",
         | 
| @@ -97,7 +97,7 @@ class OtherFurnishingsRangeV1(BaseOpenEpdHierarchicalSpec): | |
| 97 97 | 
             
                _EXT_VERSION = "1.0"
         | 
| 98 98 |  | 
| 99 99 |  | 
| 100 | 
            -
            class  | 
| 100 | 
            +
            class OpenStorageFurnitureRangeV1(BaseOpenEpdHierarchicalSpec):
         | 
| 101 101 | 
             
                """
         | 
| 102 102 | 
             
                Open Storage.
         | 
| 103 103 |  | 
| @@ -109,7 +109,7 @@ class OpenStorageRangeV1(BaseOpenEpdHierarchicalSpec): | |
| 109 109 | 
             
                _EXT_VERSION = "1.0"
         | 
| 110 110 |  | 
| 111 111 |  | 
| 112 | 
            -
            class  | 
| 112 | 
            +
            class ClosedStorageFurnitureRangeV1(BaseOpenEpdHierarchicalSpec):
         | 
| 113 113 | 
             
                """
         | 
| 114 114 | 
             
                Closed Storage.
         | 
| 115 115 |  | 
| @@ -121,7 +121,7 @@ class ClosedStorageRangeV1(BaseOpenEpdHierarchicalSpec): | |
| 121 121 | 
             
                _EXT_VERSION = "1.0"
         | 
| 122 122 |  | 
| 123 123 |  | 
| 124 | 
            -
            class  | 
| 124 | 
            +
            class RetractableStorageFurnitureRangeV1(BaseOpenEpdHierarchicalSpec):
         | 
| 125 125 | 
             
                """
         | 
| 126 126 | 
             
                Retractable Storage.
         | 
| 127 127 |  | 
| @@ -133,7 +133,7 @@ class RetractableStorageRangeV1(BaseOpenEpdHierarchicalSpec): | |
| 133 133 | 
             
                _EXT_VERSION = "1.0"
         | 
| 134 134 |  | 
| 135 135 |  | 
| 136 | 
            -
            class  | 
| 136 | 
            +
            class MobileStorageFurnitureRangeV1(BaseOpenEpdHierarchicalSpec):
         | 
| 137 137 | 
             
                """
         | 
| 138 138 | 
             
                Mobile Storage.
         | 
| 139 139 |  | 
| @@ -145,7 +145,7 @@ class MobileStorageRangeV1(BaseOpenEpdHierarchicalSpec): | |
| 145 145 | 
             
                _EXT_VERSION = "1.0"
         | 
| 146 146 |  | 
| 147 147 |  | 
| 148 | 
            -
            class  | 
| 148 | 
            +
            class WallMountedStorageShelvingRangeV1(BaseOpenEpdHierarchicalSpec):
         | 
| 149 149 | 
             
                """
         | 
| 150 150 | 
             
                Wall Mounted Shelving.
         | 
| 151 151 |  | 
| @@ -176,11 +176,11 @@ class StorageFurnitureRangeV1(BaseOpenEpdHierarchicalSpec): | |
| 176 176 |  | 
| 177 177 | 
             
                _EXT_VERSION = "1.1"
         | 
| 178 178 |  | 
| 179 | 
            -
                 | 
| 180 | 
            -
                 | 
| 181 | 
            -
                 | 
| 182 | 
            -
                 | 
| 183 | 
            -
                 | 
| 179 | 
            +
                OpenStorageFurniture: OpenStorageFurnitureRangeV1 | None = None
         | 
| 180 | 
            +
                ClosedStorageFurniture: ClosedStorageFurnitureRangeV1 | None = None
         | 
| 181 | 
            +
                RetractableStorageFurniture: RetractableStorageFurnitureRangeV1 | None = None
         | 
| 182 | 
            +
                MobileStorageFurniture: MobileStorageFurnitureRangeV1 | None = None
         | 
| 183 | 
            +
                WallMountedStorageShelving: WallMountedStorageShelvingRangeV1 | None = None
         | 
| 184 184 | 
             
                OtherStorageFurniture: OtherStorageFurnitureRangeV1 | None = None
         | 
| 185 185 |  | 
| 186 186 |  | 
| @@ -57,7 +57,7 @@ class OtherFurnishingsV1(BaseOpenEpdHierarchicalSpec): | |
| 57 57 | 
             
                _EXT_VERSION = "1.0"
         | 
| 58 58 |  | 
| 59 59 |  | 
| 60 | 
            -
            class  | 
| 60 | 
            +
            class OpenStorageFurnitureV1(BaseOpenEpdHierarchicalSpec):
         | 
| 61 61 | 
             
                """
         | 
| 62 62 | 
             
                Open Storage.
         | 
| 63 63 |  | 
| @@ -67,7 +67,7 @@ class OpenStorageV1(BaseOpenEpdHierarchicalSpec): | |
| 67 67 | 
             
                _EXT_VERSION = "1.0"
         | 
| 68 68 |  | 
| 69 69 |  | 
| 70 | 
            -
            class  | 
| 70 | 
            +
            class ClosedStorageFurnitureV1(BaseOpenEpdHierarchicalSpec):
         | 
| 71 71 | 
             
                """
         | 
| 72 72 | 
             
                Closed Storage.
         | 
| 73 73 |  | 
| @@ -77,7 +77,7 @@ class ClosedStorageV1(BaseOpenEpdHierarchicalSpec): | |
| 77 77 | 
             
                _EXT_VERSION = "1.0"
         | 
| 78 78 |  | 
| 79 79 |  | 
| 80 | 
            -
            class  | 
| 80 | 
            +
            class RetractableStorageFurnitureV1(BaseOpenEpdHierarchicalSpec):
         | 
| 81 81 | 
             
                """
         | 
| 82 82 | 
             
                Retractable Storage.
         | 
| 83 83 |  | 
| @@ -87,7 +87,7 @@ class RetractableStorageV1(BaseOpenEpdHierarchicalSpec): | |
| 87 87 | 
             
                _EXT_VERSION = "1.0"
         | 
| 88 88 |  | 
| 89 89 |  | 
| 90 | 
            -
            class  | 
| 90 | 
            +
            class MobileStorageFurnitureV1(BaseOpenEpdHierarchicalSpec):
         | 
| 91 91 | 
             
                """
         | 
| 92 92 | 
             
                Mobile Storage.
         | 
| 93 93 |  | 
| @@ -97,7 +97,7 @@ class MobileStorageV1(BaseOpenEpdHierarchicalSpec): | |
| 97 97 | 
             
                _EXT_VERSION = "1.0"
         | 
| 98 98 |  | 
| 99 99 |  | 
| 100 | 
            -
            class  | 
| 100 | 
            +
            class WallMountedStorageShelvingV1(BaseOpenEpdHierarchicalSpec):
         | 
| 101 101 | 
             
                """
         | 
| 102 102 | 
             
                Wall Mounted Shelving.
         | 
| 103 103 |  | 
| @@ -119,11 +119,11 @@ class StorageFurnitureV1(BaseOpenEpdHierarchicalSpec): | |
| 119 119 | 
             
                _EXT_VERSION = "1.1"
         | 
| 120 120 |  | 
| 121 121 | 
             
                # Nested specs:
         | 
| 122 | 
            -
                 | 
| 123 | 
            -
                 | 
| 124 | 
            -
                 | 
| 125 | 
            -
                 | 
| 126 | 
            -
                 | 
| 122 | 
            +
                OpenStorageFurniture: OpenStorageFurnitureV1 | None = None
         | 
| 123 | 
            +
                ClosedStorageFurniture: ClosedStorageFurnitureV1 | None = None
         | 
| 124 | 
            +
                RetractableStorageFurniture: RetractableStorageFurnitureV1 | None = None
         | 
| 125 | 
            +
                MobileStorageFurniture: MobileStorageFurnitureV1 | None = None
         | 
| 126 | 
            +
                WallMountedStorageShelving: WallMountedStorageShelvingV1 | None = None
         | 
| 127 127 | 
             
                OtherStorageFurniture: OtherStorageFurnitureV1 | None = None
         | 
| 128 128 |  | 
| 129 129 |  | 
| @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            Metadata-Version: 2.1
         | 
| 2 2 | 
             
            Name: openepd
         | 
| 3 | 
            -
            Version: 7.0 | 
| 3 | 
            +
            Version: 7.1.0
         | 
| 4 4 | 
             
            Summary: Python library to work with OpenEPD format
         | 
| 5 5 | 
             
            Home-page: https://github.com/cchangelabs/openepd
         | 
| 6 6 | 
             
            License: Apache-2.0
         | 
| @@ -15,6 +15,8 @@ Classifier: License :: OSI Approved :: Apache Software License | |
| 15 15 | 
             
            Classifier: Operating System :: OS Independent
         | 
| 16 16 | 
             
            Classifier: Programming Language :: Python :: 3
         | 
| 17 17 | 
             
            Classifier: Programming Language :: Python :: 3.11
         | 
| 18 | 
            +
            Classifier: Programming Language :: Python :: 3.12
         | 
| 19 | 
            +
            Classifier: Programming Language :: Python :: 3.13
         | 
| 18 20 | 
             
            Classifier: Topic :: Software Development :: Libraries :: Python Modules
         | 
| 19 21 | 
             
            Provides-Extra: api-client
         | 
| 20 22 | 
             
            Requires-Dist: email-validator (>=1.3.1)
         | 
| @@ -1,5 +1,5 @@ | |
| 1 1 | 
             
            openepd/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
         | 
| 2 | 
            -
            openepd/__version__.py,sha256= | 
| 2 | 
            +
            openepd/__version__.py,sha256=YE_JkVAHWAazVwAceVI_tNykuQM3UyXJiDIfU2dySlI,638
         | 
| 3 3 | 
             
            openepd/api/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
         | 
| 4 4 | 
             
            openepd/api/average_dataset/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
         | 
| 5 5 | 
             
            openepd/api/average_dataset/generic_estimate_sync_api.py,sha256=SRIs-qmb_wO7ELumeP1DLXJbVUtdBJ4CToecoCIsPAQ,8015
         | 
| @@ -42,7 +42,7 @@ openepd/model/factory.py,sha256=doexyqZXJVGd45T1JsbjuyGUjEykW-MerKUq4SQHhRY,2656 | |
| 42 42 | 
             
            openepd/model/generic_estimate.py,sha256=RGNrGNwaqY42m6nRrwmDZYO_Gy2EhOBZn6g0EAWiDHs,4224
         | 
| 43 43 | 
             
            openepd/model/geography.py,sha256=Jx7NIDdk_sIvwyh-7YxnIjAwIHW2HCQK7UtFGM2xKtw,42095
         | 
| 44 44 | 
             
            openepd/model/industry_epd.py,sha256=Cqn01IUNSZqRkyU05TwtOLXDKlg0YnGzqvKL8A__zbI,4061
         | 
| 45 | 
            -
            openepd/model/lcia.py,sha256= | 
| 45 | 
            +
            openepd/model/lcia.py,sha256=swKO8vAISpesYzF-w7HHLjckVhCb3jj3dv4FbIwp3Ak,27749
         | 
| 46 46 | 
             
            openepd/model/org.py,sha256=1ALm91OyJrvyFjkJ1hWQWGKO5fDdYQE8lMWEVZRUPrs,6348
         | 
| 47 47 | 
             
            openepd/model/pcr.py,sha256=W_GjmMwFxZGLnbbU7khoYziSvOxxd6Id4xBdhitq_SE,5655
         | 
| 48 48 | 
             
            openepd/model/specs/README.md,sha256=UGhSiFJ9hOxT1mZl-5ZrhkOrPKf1W_gcu5CI9hzV7LU,2430
         | 
| @@ -67,7 +67,7 @@ openepd/model/specs/range/electrical_transmission_and_distribution_equipment.py, | |
| 67 67 | 
             
            openepd/model/specs/range/electricity.py,sha256=yn_S25C_tZqseb8hiJ1yiHszu2mQ49FOFWWCqNpOBY0,997
         | 
| 68 68 | 
             
            openepd/model/specs/range/finishes.py,sha256=gJnMvjhivQC0jnKizKcrwn1Y7UJjrK_emixigQhbbfE,21792
         | 
| 69 69 | 
             
            openepd/model/specs/range/fire_and_smoke_protection.py,sha256=KLH5t3d-a2cppF5i-uW4233z1vAPbJIY1zTn89_gV4k,3333
         | 
| 70 | 
            -
            openepd/model/specs/range/furnishings.py,sha256= | 
| 70 | 
            +
            openepd/model/specs/range/furnishings.py,sha256=LWu88Y7QEuq7IdNCKQG5v0u0PAWpG919gxkMdmm5Sig,6748
         | 
| 71 71 | 
             
            openepd/model/specs/range/grouting.py,sha256=BQPxH6BvlXpdhLEZBui9zTuY93K_9syjoa6rdnF8GGY,1095
         | 
| 72 72 | 
             
            openepd/model/specs/range/manufacturing_inputs.py,sha256=iqK4QS-T5vyjMQtl5v63Feb99qSNwKS0kM-1izoJTzA,5615
         | 
| 73 73 | 
             
            openepd/model/specs/range/masonry.py,sha256=egeqDr0K3eTFDHeIzFHrg9_u9d6XIHOSmBPnBERkvxY,2908
         | 
| @@ -106,7 +106,7 @@ openepd/model/specs/singular/electrical_transmission_and_distribution_equipment. | |
| 106 106 | 
             
            openepd/model/specs/singular/electricity.py,sha256=f1cJ9eklNUf97khCIZiT5-z8V_TbOcvH2me_1UTQVrE,823
         | 
| 107 107 | 
             
            openepd/model/specs/singular/finishes.py,sha256=8BtFK2_olB8OJQFv8rxf7afoLhqlJI1o2tEKopidOGA,24398
         | 
| 108 108 | 
             
            openepd/model/specs/singular/fire_and_smoke_protection.py,sha256=h8Dy4ps_xfa5g8EQEIN8OHxjH6aDvqmZUFRdEzYy7aY,3081
         | 
| 109 | 
            -
            openepd/model/specs/singular/furnishings.py,sha256 | 
| 109 | 
            +
            openepd/model/specs/singular/furnishings.py,sha256=-8_96GZala4_xuI6u29OO0KfGA0OctsD3M5Iid2NHvE,5737
         | 
| 110 110 | 
             
            openepd/model/specs/singular/grouting.py,sha256=pg2tX3W7a2TQ3z_eyFYGlBJY3WEwn6JlZyqM3PQIJcU,934
         | 
| 111 111 | 
             
            openepd/model/specs/singular/manufacturing_inputs.py,sha256=OBy7Lzm1TbC8kGxE3YXIXeyrqIPqf2_rXcGEN7MEMBw,5233
         | 
| 112 112 | 
             
            openepd/model/specs/singular/masonry.py,sha256=e9siblrPFFSvIjucYkwZzSlpSSZPZ9rA1bdVIDQz-RM,3627
         | 
| @@ -135,7 +135,7 @@ openepd/model/validation/numbers.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9 | |
| 135 135 | 
             
            openepd/model/validation/quantity.py,sha256=zsyNGygYW4GGeWAtyM9708lFdEuebtSctr3qIfNdEXQ,21720
         | 
| 136 136 | 
             
            openepd/model/versioning.py,sha256=de53OlduidxAkDlSbAu6xrIy2IUuCnwI69vUJPCXX_8,4512
         | 
| 137 137 | 
             
            openepd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         | 
| 138 | 
            -
            openepd-7.0. | 
| 139 | 
            -
            openepd-7.0. | 
| 140 | 
            -
            openepd-7.0. | 
| 141 | 
            -
            openepd-7.0. | 
| 138 | 
            +
            openepd-7.1.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
         | 
| 139 | 
            +
            openepd-7.1.0.dist-info/METADATA,sha256=xmx2tvBuvOMpEzJ_ViXm82pnWkZQ1_XqqnaBBMo11So,9137
         | 
| 140 | 
            +
            openepd-7.1.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
         | 
| 141 | 
            +
            openepd-7.1.0.dist-info/RECORD,,
         | 
| 
            File without changes
         |