diff --git a/README.md b/README.md index d92b2e5..623c81b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,9 @@ of ”Computer Aided Learning of the Finite Element Method” and been developed ## Why CALFEM for Python? -Unlike MATLAB, which have expensive licenses, Python is free to use and distribute both for personal and commercial use. This is the python version of CALFEM for scientific purposes/research. +While both the MATLAB and Python versions of CALFEM are open-source (MIT Licensed), the key difference lies in the environments they operate in. MATLAB is not open-source and requires expensive licenses (for commercial use), which can be a barrier for many users. In contrast, Python is a free, open-source programming language, making CALFEM for Python more accessible and cost-effective for a broader audience, including those in academic, personal, or commercial settings. + +CALFEM for Python is released under the MIT license, which enables its use in open-source as well as commercial projects. ## Installation diff --git a/build-package.py b/build-package.py index 139f6c8..46d712e 100644 --- a/build-package.py +++ b/build-package.py @@ -10,7 +10,7 @@ def update_setup(package_name, package_version, package_deps): f.write(setup_template.format(package_name=package_name, package_version=package_version, package_depends=package_deps)) def build_package(): - os.system("python -m build --wheel") + os.system("C:\Users\Miniconda3\envs\calfem-dev\python.exe -m build --wheel") if __name__ == "__main__": diff --git a/pyproject.toml b/pyproject.toml index 666bdca..03e2f0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,10 @@ [project] name = "calfem-python" -version = "3.6.6" +version = "3.6.7" description = "CALFEM for Python" authors = [ - {name = "Jonas Lindemann, et al", email = "jonas.lindemann@lunarc.lu.se"}, + {name = "Jonas Lindemann", email = "jonas.lindemann@lunarc.lu.se"}, + {name = "Jonas Lindemann", email = "jonas.lindemann@gmail.com"} ] dependencies = [ "gmsh",