zen-garden 2.7.16__py3-none-any.whl → 2.7.17__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.
zen_garden/__main__.py CHANGED
@@ -28,7 +28,7 @@ def run_module(args=None, config = "./config.py", dataset = None,
28
28
  "current working directory. You can specify a config file with the --config argument. However, " \
29
29
  "note that the output directory will always be the current working directory, independent of the " \
30
30
  "dataset specified in the config file."
31
- parser = argparse.ArgumentParser(description=description, add_help=True, usage="usage: python -m zen_garden [-h] [--config CONFIG] [--dataset DATASET] [--job_index JOB_INDEX] [--job_index_var JOB_INDEX_VAR] [-- download_example EXAMPLE_NAME]")
31
+ parser = argparse.ArgumentParser(description=description, add_help=True, usage="usage: zen-garden [-h] [--config CONFIG] [--dataset DATASET] [--job_index JOB_INDEX] [--job_index_var JOB_INDEX_VAR] [-- download_example EXAMPLE_NAME]")
32
32
  # TODO make json config default
33
33
  parser.add_argument("--config", required=False, type=str, default=config, help="Path to the config file used to run the pipeline (e.g., `./config.json`). Alternatively, if the config file is located in the current working directory, then the file name is alone is also acceptable (e.g. `config.json`).")
34
34
  parser.add_argument("--dataset", required=False, type=str, default=dataset, help="Path to the dataset (e.g. `./<dataset_name>`). Alternatively, if the dataset is located in the current working directory, then the folder name alone is also acceptable (e.g. `<dataset_name>`). IMPORTANT: This will overwrite the config.analysis.dataset attribute of the config file!")
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: zen_garden
3
- Version: 2.7.16
3
+ Version: 2.7.17
4
4
  Summary: ZEN-garden is an optimization model of energy systems and value chains.
5
- Author: Alissa Ganter, Johannes Burger, Francesco De Marco, Lukas Kunz, Lukas Schmidt-Engelbertz, Paolo Gabrielli, Giovanni Sansavini
5
+ Author: Alissa Ganter, Johannes Burger, Francesco De Marco, Lukas Kunz, Lukas Schmidt-Engelbertz, Christoph Funke, Paolo Gabrielli, Giovanni Sansavini
6
6
  Author-email: Jacob Mannhardt <zen-garden@ethz.ch>
7
7
  Requires-Python: >=3.11,<3.14
8
8
  Description-Content-Type: text/markdown
@@ -1,5 +1,5 @@
1
1
  zen_garden/__init__.py,sha256=Jc8WQzHjL74sk4xOnbv1i68Bt6RuzXPkh9WYn3Jl_LE,376
2
- zen_garden/__main__.py,sha256=r3pop1FpaTfe9YUGxYP48T1uqdq5uZW8gBzZKbZOFno,4624
2
+ zen_garden/__main__.py,sha256=M6iRgRP7L2sgTStLoRhixAGRLBh4Q9OkxhFUy6Zn4GQ,4614
3
3
  zen_garden/_internal.py,sha256=K648bT1O8gD9uIrfmqPXP5lDdlkJd3-Ai111_IyIc1w,5347
4
4
  zen_garden/default_config.py,sha256=ozz2LBSGSaMH8alEAzh-6ziM9IE9zXM9PfRD3nulAIs,8663
5
5
  zen_garden/optimization_setup.py,sha256=Rv_IciR_Y9GF-OaPDDAvTQ2huTuAt94jrWpcDJCQgWQ,42176
@@ -30,8 +30,8 @@ zen_garden/preprocess/extract_input_data.py,sha256=PWKdel7s488SELseyAaoFkwXpzJU4
30
30
  zen_garden/preprocess/parameter_change_log.py,sha256=WNhLYTyuaFkUl_e4QH36W1chpqg00m7zg__PawPogAY,387
31
31
  zen_garden/preprocess/time_series_aggregation.py,sha256=v8xRRk4I9WZ2yi7V3I_Ersj2RV1T2WIKslx8ohkMfWI,32112
32
32
  zen_garden/preprocess/unit_handling.py,sha256=OGIHFyDdUmGU-GEGHkJGJ9RmKfDBy5-HmuBQmtYAK5Q,63043
33
- zen_garden-2.7.16.dist-info/entry_points.txt,sha256=Jfa7k0xmvGql3hGJid62hGV1rzDt81uTs3PgZre0VJk,118
34
- zen_garden-2.7.16.dist-info/licenses/LICENSE.txt,sha256=_kEtxPe9gWOwMzdiy8nLzgABiPdMvUS0kaSCOIrEA_E,1101
35
- zen_garden-2.7.16.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
36
- zen_garden-2.7.16.dist-info/METADATA,sha256=rh8SzLVXjHwV9foyWEcIxOwR3xvyzQFASIXyT2YesZ0,5632
37
- zen_garden-2.7.16.dist-info/RECORD,,
33
+ zen_garden-2.7.17.dist-info/entry_points.txt,sha256=s6s3kCqiMPeJ5r83yKBgxa79Qm6aQFoQWfIPJbz0iTg,128
34
+ zen_garden-2.7.17.dist-info/licenses/LICENSE.txt,sha256=_kEtxPe9gWOwMzdiy8nLzgABiPdMvUS0kaSCOIrEA_E,1101
35
+ zen_garden-2.7.17.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
36
+ zen_garden-2.7.17.dist-info/METADATA,sha256=LAT2cCJ7p2v9StGXNxyXTN0F3EAht0FoWszqlmPbIrY,5649
37
+ zen_garden-2.7.17.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ zen-garden=zen_garden.__main__:run_module
3
+ zen-visualization=zen_garden.visualization:parse_arguments_and_run
4
+
@@ -1,4 +0,0 @@
1
- [console_scripts]
2
- zen-garden=zen_garden.__main__:run_module
3
- zen-viz=zen_garden.visualization:parse_arguments_and_run
4
-