Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SinaHKazemi committed Apr 29, 2024
1 parent 58e4eff commit fa909c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/input_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, name, techmap_dir_path, ts_dir_path, db_conn, scenario):

self.param_index_dict = Param_Index_Dict

file_path = pkg_resources.resource_filename('cesm', 'Core/init_queries.sql')
file_path = pkg_resources.resource_filename('cesm', 'core/init_queries.sql')
# Read queries from the .sql file
with open(file_path, 'r') as file:
queries = file.read()
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='cesm',
version='0.0.8',
version='0.0.9',
packages=find_packages(),
description='Compact Energy System Modeling Tool (CESM)',
long_description="""
Expand All @@ -13,7 +13,7 @@
An example of the German energy system is also provided. The results of the model are compatible with the results of the paper "Barbosa, Julia, Christopher Ripp, and Florian Steinke. Accessible Modeling of the German Energy Transition: An Open, Compact, and Validated Model. Energies 14, no. 23 (2021)"
""",
package_data={
'cesm': ['Data/*'],
'': ['Data/*'],
},
long_description_content_type='text/markdown',
py_modules=['cesm'], # Assuming cesm.py is in the root of your package directory
Expand Down

0 comments on commit fa909c9

Please sign in to comment.