diff --git a/README.md b/README.md index a02d91f..3ead90a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Mecsimcalc v0.1.1 documentation +# Mecsimcalc v0.1.2 documentation This library is designed to provide a set of functions for handling and converting various types of data, such as base64 encoded data, Pandas DataFrames, and Pillow images. diff --git a/mecsimcalc/image_utils.py b/mecsimcalc/image_utils.py index 2d3246a..e85ec18 100644 --- a/mecsimcalc/image_utils.py +++ b/mecsimcalc/image_utils.py @@ -4,7 +4,7 @@ from PIL import Image -from general_utils import input_to_file, metadata_to_filetype +from mecsimcalc import input_to_file, metadata_to_filetype # Define a dictionary for file type conversions file_type_mappings = {"jpg": "jpeg", "tif": "tiff", "ico": "x-icon", "svg": "svg+xml", "jpeg": "jpeg", "tiff": "tiff", "x-icon": "x-icon", "svg+xml": "svg+xml"} diff --git a/mecsimcalc/spreadsheet_utils.py b/mecsimcalc/spreadsheet_utils.py index b06ea58..0f99643 100644 --- a/mecsimcalc/spreadsheet_utils.py +++ b/mecsimcalc/spreadsheet_utils.py @@ -3,7 +3,7 @@ import pandas as pd from typing import Union, Tuple -from general_utils import input_to_file, metadata_to_filetype +from mecsimcalc import input_to_file, metadata_to_filetype def file_to_dataframe(file: io.BytesIO) -> pd.DataFrame: diff --git a/setup.py b/setup.py index a5d02e4..f47bf67 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh: long_description = "\n" + fh.read() -VERSION = "0.1.1" +VERSION = "0.1.2" DESCRIPTION = "Useful functions for MecSimCalc.com" # Setting up