Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion build-package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__":

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand Down