Skip to content

Commit

Permalink
Mejor así
Browse files Browse the repository at this point in the history
  • Loading branch information
ZibraMax committed May 4, 2022
1 parent 9eb20df commit 26d52c1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Expand Up @@ -20,6 +20,17 @@ Use the package manager [pip](https://pypi.org/project/AFEM/) to install AFEM.
pip install AFEM
```

From source:

```bash
git clone https://github.com/ZibraMax/FEM
cd FEM
python -m venv .venv
python -m pip install build
python -m build
python -m pip install -e .[docs] # Basic instalation with docs
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -4,6 +4,7 @@ author = Arturo Rodriguez
author_email = da.rodriguezh@uniandes.edu.com
version = attr: FEM.__version__
description = A Finite Element Python implementation
long_description_content_type = text/markdown
long_description = file: README.md
url = https://github.com/ZibraMax/FEM
package_dir =
Expand Down
2 changes: 1 addition & 1 deletion src/FEM/__init__.py
Expand Up @@ -2,7 +2,7 @@
"""
__author__ = "Arturo Rodriguez - da.rodriguezh@uniandes.edu.co"
__version__ = "1.0.31"
__version__ = "1.0.32"
from .Elements import *
from .Geometry import *
from .Core import *
Expand Down

0 comments on commit 26d52c1

Please sign in to comment.