openepd 0.6.0__tar.gz → 0.7.0__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.1
2
2
  Name: openepd
3
- Version: 0.6.0
3
+ Version: 0.7.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
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "openepd"
3
- version = "0.6.0"
3
+ version = "0.7.0"
4
4
  license = "Apache-2.0"
5
5
  description = "Python library to work with OpenEPD format"
6
6
  authors = ["C-Change Labs <support@c-change-labs.com>"]
@@ -56,7 +56,7 @@ types-deprecated = ">=1.2.9"
56
56
 
57
57
 
58
58
  [tool.commitizen]
59
- version = "0.6.0"
59
+ version = "0.7.0"
60
60
  bump_version = "bump: version $current_version → $new_version"
61
61
  update_changelog_on_bump = true
62
62
  pre_bump_hooks = []
@@ -17,4 +17,4 @@
17
17
  # Charles Pankow Foundation, Microsoft Sustainability Fund, Interface, MKA Foundation, and others.
18
18
  # Find out more at www.BuildingTransparency.org
19
19
  #
20
- VERSION = "0.6.0"
20
+ VERSION = "0.7.0"
@@ -161,9 +161,41 @@ class ResourceUseSet(BaseOpenEpdSchema):
161
161
  description="Renewable primary resources with energy content used as material. "
162
162
  "First use biobased materials used as materials (e.g. wood, hemp, etc.)."
163
163
  )
164
+ rpre: ScopeSet | None = pyd.Field(description="Renewable primary energy resources as energy")
165
+ nrpre: ScopeSet | None = pyd.Field(description="Non-renewable primary resources as energy (fuel)")
166
+ nrprm: ScopeSet | None = pyd.Field(description="Non-renewable primary resources as material")
167
+ fw: ScopeSet | None = pyd.Field(description="Use of net fresh water")
168
+ sm: ScopeSet | None = pyd.Field(description="Use of secondary materials")
169
+ rsf: ScopeSet | None = pyd.Field(description="Use of renewable secondary materials")
170
+ nrsf: ScopeSet | None = pyd.Field(description="Use of non-renewable secondary fuels")
171
+ re: ScopeSet | None = pyd.Field(description="Renewable energy resources")
172
+ pere: ScopeSet | None = pyd.Field(
173
+ description="Use of renewable primary energy excluding renewable primary energy resources used as raw materials"
174
+ )
175
+ perm: ScopeSet | None = pyd.Field(description="Use of renewable primary energy resources used as raw materials")
176
+ pert: ScopeSet | None = pyd.Field(description="Total use of renewable primary energy resources")
177
+ penre: ScopeSet | None = pyd.Field(
178
+ description="Use of non-renewable primary energy excluding "
179
+ "non-renewable primary energy resources used as raw materials"
180
+ )
181
+ penrm: ScopeSet | None = pyd.Field(
182
+ description="Use of non-renewable primary energy resources used as raw materials"
183
+ )
184
+ penrt: ScopeSet | None = pyd.Field(description="Total use of non-renewable primary energy resources")
164
185
 
165
186
 
166
187
  class OutputFlowSet(BaseOpenEpdSchema):
167
188
  """A set of output flows, such as waste, emissions, etc."""
168
189
 
190
+ twd: ScopeSet | None = pyd.Field(description="Total waste disposed")
169
191
  hwd: ScopeSet | None = pyd.Field(description="Hazardous waste disposed")
192
+ nhwd: ScopeSet | None = pyd.Field(description="Non-hazardous waste disposed")
193
+ rwd: ScopeSet | None = pyd.Field(description="Radioactive waste disposed")
194
+ hlrw: ScopeSet | None = pyd.Field(description="High level radioactive waste disposed")
195
+ illrw: ScopeSet | None = pyd.Field(description="Intermediate level radioactive waste disposed")
196
+ cru: ScopeSet | None = pyd.Field(description="Components for re-use")
197
+ mr: ScopeSet | None = pyd.Field(description="Recycled materials")
198
+ mfr: ScopeSet | None = pyd.Field(description="Materials for recycling")
199
+ mer: ScopeSet | None = pyd.Field(description="Materials for energy recovery")
200
+ ee: ScopeSet | None = pyd.Field(description="Exported energy")
201
+ eh: ScopeSet | None = pyd.Field(description="Exported heat")
File without changes
File without changes
File without changes
File without changes