domainiac 7.0.0__tar.gz → 8.0.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.3
2
2
  Name: domainiac
3
- Version: 7.0.0
3
+ Version: 8.0.0
4
4
  Summary: Package for working with Energinet data, but with specialized functions used for Enigma.
5
5
  Author: Team Enigma
6
6
  Author-email: gridop-enigma@energinet.dk
@@ -13,6 +13,7 @@ class Plant:
13
13
  price_area: str
14
14
  coordinate: Coordinate
15
15
  installed_power_MW: float
16
+ power_system_resource_type: str
16
17
 
17
18
  @classmethod
18
19
  def plants_from_df(cls, df: pd.DataFrame) -> list["Plant"]:
@@ -30,6 +31,7 @@ class Plant:
30
31
  altitude=row["altitude"],
31
32
  ),
32
33
  installed_power_MW=row["installed_power_MW"],
34
+ power_system_resource_type=row["power_system_resource_type"],
33
35
  )
34
36
  plants.append(plant)
35
37
  return plants
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "domainiac"
3
- version = "7.0.0"
3
+ version = "8.0.0"
4
4
  description = "Package for working with Energinet data, but with specialized functions used for Enigma."
5
5
  authors = ["Team Enigma <gridop-enigma@energinet.dk>"]
6
6
  packages = [