Metadata-Version: 2.1
Name: lapack4abaqus
Version: 1.0.6
Summary: Create lapack.f for Abaqus to include.
Author-email: HUANG Lihao <huang-lihao@outlook.com>
Project-URL: Homepage, https://github.com/huang-lihao/lapack4abaqus
Project-URL: Bug Tracker, https://github.com/huang-lihao/lapack4abaqus/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# lapack4abaqus
[![GitHub release (with filter)](https://img.shields.io/github/v/release/huang-lihao/lapack4abaqus?logo=github)
](https://github.com/huang-lihao/lapack4abaqus)
[![Upload Python Package](https://github.com/huang-lihao/lapack4abaqus/actions/workflows/python-publish.yml/badge.svg)](https://github.com/huang-lihao/lapack4abaqus/actions/workflows/python-publish.yml)
[![PyPI - Version](https://img.shields.io/pypi/v/lapack4abaqus?logo=pypi)](https://pypi.org/project/lapack4abaqus/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/lapack4abaqus?logo=PyPI)](https://pypi.org/project/lapack4abaqus/)
[![GitHub License](https://img.shields.io/github/license/huang-lihao/lapack4abaqus)](https://github.com/huang-lihao/lapack4abaqus/blob/main/LICENSE)

Create `lapack.f` for Abaqus to include, by adding `k` to the name of each subroutine and function.

# Install
Use PyPI to install [lapack4abaqus](https://pypi.org/project/lapack4abaqus/):
```sh
pip install lapack4abaqus
```

# Usage
Run the following script, then you will get the desired `lapack.f` to include.
```python
from lapack4abaqus import gen_lapack

gen_lapack(
    functions = ["dgetrf", "dgetri"], # list of desired funtions or subroutines
)
```
