domainiac 9.0.5__tar.gz → 9.2.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.
- domainiac-9.2.0/PKG-INFO +19 -0
- domainiac-9.2.0/pyproject.toml +42 -0
- domainiac-9.0.5/PKG-INFO +0 -15
- domainiac-9.0.5/pyproject.toml +0 -37
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/__init__.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/functions/__init__.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/functions/conversions.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/functions/interpolation.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/functions/solar.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/functions/temperature.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/functions/typing.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/functions/wind.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/managers/__init__.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/managers/masterdata_manager.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/managers/metering_manager.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/managers/nwp_manager.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/managers/outage_manager.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/managers/plant_manager.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/managers/resource_manager.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/managers/unit_manager.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/modeling/__init__.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/modeling/nwp.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/modeling/plant.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/wrappers/__init__.py +0 -0
- {domainiac-9.0.5 → domainiac-9.2.0}/domainiac/wrappers/cache_wrapper.py +0 -0
domainiac-9.2.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: domainiac
|
|
3
|
+
Version: 9.2.0
|
|
4
|
+
Summary: Package for working with Energinet data, but with specialized functions used for Enigma.
|
|
5
|
+
Author: Team Enigma
|
|
6
|
+
Author-email: enigma@energinet.dk
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
|
+
Requires-Dist: datamazing (>=5.1.6)
|
|
15
|
+
Requires-Dist: pandas (>=2.2.0)
|
|
16
|
+
Requires-Dist: pvlib (>=0.13.1)
|
|
17
|
+
Requires-Dist: scikit-learn (>=1.3.0)
|
|
18
|
+
Requires-Dist: scipy (>=1.15.3)
|
|
19
|
+
Requires-Dist: typeguard (>=4.2.1)
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "domainiac"
|
|
3
|
+
version = "9.2.0"
|
|
4
|
+
description = "Package for working with Energinet data, but with specialized functions used for Enigma."
|
|
5
|
+
authors = [{ name = "Team Enigma", email = "enigma@energinet.dk" }]
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
|
|
8
|
+
[tool.poetry]
|
|
9
|
+
packages = [{ include = "domainiac" }]
|
|
10
|
+
requires-poetry = ">=2.2"
|
|
11
|
+
|
|
12
|
+
[tool.poetry.dependencies]
|
|
13
|
+
pandas = ">=2.2.0"
|
|
14
|
+
datamazing = ">=5.1.6"
|
|
15
|
+
typeguard = ">=4.2.1"
|
|
16
|
+
scikit-learn = ">=1.3.0"
|
|
17
|
+
scipy = ">=1.15.3"
|
|
18
|
+
pvlib = ">=0.13.1"
|
|
19
|
+
|
|
20
|
+
[tool.poetry.group.dev.dependencies]
|
|
21
|
+
pre-commit = ">=2.20.0"
|
|
22
|
+
black = ">=23.9.1"
|
|
23
|
+
isort = ">=5.12.0"
|
|
24
|
+
|
|
25
|
+
[tool.poetry.group.test.dependencies]
|
|
26
|
+
pytest = ">=7"
|
|
27
|
+
pytest-cov = ">=3.0.0"
|
|
28
|
+
parameterized = ">=0.9.0"
|
|
29
|
+
plotly = ">=6.0.0"
|
|
30
|
+
pytype = ">=2023.7"
|
|
31
|
+
|
|
32
|
+
[build-system]
|
|
33
|
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
34
|
+
build-backend = "poetry.core.masonry.api"
|
|
35
|
+
|
|
36
|
+
[tool.isort]
|
|
37
|
+
multi_line_output = 3
|
|
38
|
+
line_length = 88
|
|
39
|
+
include_trailing_comma = true
|
|
40
|
+
|
|
41
|
+
[tool.black]
|
|
42
|
+
line_length = 88
|
domainiac-9.0.5/PKG-INFO
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: domainiac
|
|
3
|
-
Version: 9.0.5
|
|
4
|
-
Summary: Package for working with Energinet data, but with specialized functions used for Enigma.
|
|
5
|
-
Author: Team Enigma
|
|
6
|
-
Author-email: gridop-enigma@energinet.dk
|
|
7
|
-
Requires-Python: >=3.10,<3.11
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
-
Requires-Dist: datamazing (>=5.0.2,<6.0.0)
|
|
11
|
-
Requires-Dist: pandas (>=2.2.0,<3.0.0)
|
|
12
|
-
Requires-Dist: pvlib (>=0.13.1,<0.14.0)
|
|
13
|
-
Requires-Dist: scikit-learn (>=1.3.0,<2.0.0)
|
|
14
|
-
Requires-Dist: scipy (>=1.15.3,<2.0.0)
|
|
15
|
-
Requires-Dist: typeguard (>=4.2.1,<5.0.0)
|
domainiac-9.0.5/pyproject.toml
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "domainiac"
|
|
3
|
-
version = "9.0.5"
|
|
4
|
-
description = "Package for working with Energinet data, but with specialized functions used for Enigma."
|
|
5
|
-
authors = ["Team Enigma <gridop-enigma@energinet.dk>"]
|
|
6
|
-
packages = [
|
|
7
|
-
{ include = "domainiac" },
|
|
8
|
-
]
|
|
9
|
-
|
|
10
|
-
[tool.poetry.dependencies]
|
|
11
|
-
python = "^3.10,<3.11"
|
|
12
|
-
pandas = "^2.2.0"
|
|
13
|
-
datamazing = "^5.0.2"
|
|
14
|
-
typeguard = "^4.2.1"
|
|
15
|
-
scikit-learn = "^1.3.0"
|
|
16
|
-
scipy = "^1.15.3"
|
|
17
|
-
pvlib = "^0.13.1"
|
|
18
|
-
|
|
19
|
-
[tool.poetry.dev-dependencies]
|
|
20
|
-
pytest = "^7"
|
|
21
|
-
pytest-cov = "^3.0.0"
|
|
22
|
-
pre-commit = "^2.20.0"
|
|
23
|
-
pytype = "^2023.7"
|
|
24
|
-
parameterized = "^0.9.0"
|
|
25
|
-
plotly = "^6.0.0"
|
|
26
|
-
|
|
27
|
-
[build-system]
|
|
28
|
-
requires = ["poetry-core>=1.0.0"]
|
|
29
|
-
build-backend = "poetry.core.masonry.api"
|
|
30
|
-
|
|
31
|
-
[tool.isort]
|
|
32
|
-
multi_line_output = 3
|
|
33
|
-
line_length = 88
|
|
34
|
-
include_trailing_comma = true
|
|
35
|
-
|
|
36
|
-
[tool.black]
|
|
37
|
-
line_length = 88
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|